budibase/packages/materialdesign-components/src/Common/Icon.svelte

9 lines
171 B
Svelte
Raw Normal View History

<script>
2020-02-25 16:21:23 +01:00
export let icon = ""
2020-03-03 16:23:03 +01:00
export let context = ""
let cls = !!context ? `material-icons mdc-${context}` : "material-icons"
</script>
<i class={cls}>{icon}</i>