2020-09-15 12:53:02 +02:00
|
|
|
<script>
|
2020-11-18 22:06:12 +01:00
|
|
|
import { getContext } from "svelte"
|
|
|
|
|
2021-01-18 16:34:34 +01:00
|
|
|
// Add this back once we can define specific design options to expose
|
|
|
|
// const { styleable } = getContext("sdk")
|
|
|
|
// const component = getContext("component")
|
2020-09-15 12:53:02 +02:00
|
|
|
|
|
|
|
export let icon = ""
|
|
|
|
export let size = "fa-lg"
|
|
|
|
export let color = "#000"
|
|
|
|
</script>
|
|
|
|
|
2020-11-18 22:06:12 +01:00
|
|
|
<i
|
|
|
|
style={`color: ${color};`}
|
2021-01-18 16:34:34 +01:00
|
|
|
class={`${icon} ${size}`} />
|