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 12:52:55 +02:00
export let text = ""
</script>
2020-02-25 16:21:23 +01:00
{#if type === 'h1'}
<h1 class={className} use:styleable={$component.styles}>{text}</h1>
2020-02-25 16:21:23 +01:00
{:else if type === 'h2'}
<h2 class={className} use:styleable={$component.styles}>{text}</h2>
2020-02-25 16:21:23 +01:00
{:else if type === 'h3'}
<h3 class={className} use:styleable={$component.styles}>{text}</h3>
2020-02-25 16:21:23 +01:00
{:else if type === 'h4'}
<h4 class={className} use:styleable={$component.styles}>{text}</h4>
2020-02-25 16:21:23 +01:00
{:else if type === 'h5'}
<h5 class={className} use:styleable={$component.styles}>{text}</h5>
2020-02-25 16:21:23 +01:00
{:else if type === 'h6'}
<h6 class={className} use:styleable={$component.styles}>{text}</h6>
{/if}