Browse Source

turn off stylable action until we can expose specific design settings

pull/4023/head
kevmodrome 5 years ago
parent
commit
956d1f4fc1
  1. 8
      packages/standard-components/src/Icon.svelte

8
packages/standard-components/src/Icon.svelte

@ -1,8 +1,9 @@
<script>
import { getContext } from "svelte"
const { styleable } = getContext("sdk")
const component = getContext("component")
// Add this back once we can define specific design options to expose
// const { styleable } = getContext("sdk")
// const component = getContext("component")
export let icon = ""
export let size = "fa-lg"
@ -11,5 +12,4 @@
<i
style={`color: ${color};`}
class={`${icon} ${size}`}
use:styleable={$component.styles} />
class={`${icon} ${size}`} />

Loading…
Cancel
Save