1
0
Fork 0
mirror of synced 2024-09-12 15:37:31 +12:00
budibase/packages/standard-components/src/Icon.svelte

10 lines
144 B
Svelte
Raw Normal View History

2020-04-24 00:22:41 +12:00
<script>
export let icon = ""
export let fontSize = "1em"
export let _bb
$: style = { fontSize }
</script>
<i class={icon} {style} />