1
0
Fork 0
mirror of synced 2024-08-17 11:01:26 +12:00
budibase/packages/standard-components/src/Heading.svelte

25 lines
786 B
Svelte
Raw Normal View History

<script>
import { getContext } from "svelte"
const { styleable } = getContext("sdk")
const component = getContext("component")
export let className = ""
export let type
2020-04-22 22:52:55 +12:00
export let text = ""
</script>
2020-02-26 04:21:23 +13:00
{#if type === 'h1'}
<h1 class={className} use:styleable={$component.styles}>{text}</h1>
2020-02-26 04:21:23 +13:00
{:else if type === 'h2'}
<h2 class={className} use:styleable={$component.styles}>{text}</h2>
2020-02-26 04:21:23 +13:00
{:else if type === 'h3'}
<h3 class={className} use:styleable={$component.styles}>{text}</h3>
2020-02-26 04:21:23 +13:00
{:else if type === 'h4'}
<h4 class={className} use:styleable={$component.styles}>{text}</h4>
2020-02-26 04:21:23 +13:00
{:else if type === 'h5'}
<h5 class={className} use:styleable={$component.styles}>{text}</h5>
2020-02-26 04:21:23 +13:00
{:else if type === 'h6'}
<h6 class={className} use:styleable={$component.styles}>{text}</h6>
{/if}