1
0
Fork 0
mirror of synced 2024-09-19 10:48:30 +12:00
budibase/packages/standard-components/src/Heading.svelte
2020-11-20 09:50:10 +00:00

24 lines
713 B
Svelte

<script>
import { getContext } from "svelte"
const { styleable } = getContext("sdk")
const styles = getContext("style")
export let className = ""
export let type
export let text = ""
</script>
{#if type === 'h1'}
<h1 class={className} use:styleable={styles}>{text}</h1>
{:else if type === 'h2'}
<h2 class={className} use:styleable={styles}>{text}</h2>
{:else if type === 'h3'}
<h3 class={className} use:styleable={styles}>{text}</h3>
{:else if type === 'h4'}
<h4 class={className} use:styleable={styles}>{text}</h4>
{:else if type === 'h5'}
<h5 class={className} use:styleable={styles}>{text}</h5>
{:else if type === 'h6'}
<h6 class={className} use:styleable={styles}>{text}</h6>
{/if}