mirror of https://github.com/Budibase/budibase.git
1 changed files with 7 additions and 6 deletions
@ -1,15 +1,16 @@ |
|||
<script> |
|||
import { getContext } from "svelte" |
|||
|
|||
// Add this back once we can define specific design options to expose |
|||
// const { styleable } = getContext("sdk") |
|||
// const component = getContext("component") |
|||
const { styleable } = getContext("sdk") |
|||
const component = getContext("component") |
|||
|
|||
export let icon = "" |
|||
export let size = "fa-lg" |
|||
export let color = "#000" |
|||
</script> |
|||
|
|||
<i |
|||
style={`color: ${color};`} |
|||
class={`${icon} ${size}`} /> |
|||
<div style="color: {color}; display: contents"> |
|||
<i |
|||
use:styleable={$component.styles} |
|||
class="{icon} {size}" /> |
|||
</div> |
|||
Loading…
Reference in new issue