1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00
budibase/packages/standard-components/src/IconOld.svelte

10 lines
144 B
Svelte
Raw Normal View History

2020-09-15 22:53:02 +12:00
<script>
export let icon = ""
export let fontSize = "1em"
export let _bb
$: style = { fontSize }
</script>
<i class={icon} {style} />