diff --git a/packages/standard-components/src/Heading.svelte b/packages/standard-components/src/Heading.svelte index 66775dc666..bf38ecf06e 100644 --- a/packages/standard-components/src/Heading.svelte +++ b/packages/standard-components/src/Heading.svelte @@ -4,21 +4,32 @@ const { styleable } = getContext("sdk") const component = getContext("component") - export let className = "" export let type export let text = "" {#if type === 'h1'} -

{text}

+

{text}

{:else if type === 'h2'} -

{text}

+

{text}

{:else if type === 'h3'} -

{text}

+

{text}

{:else if type === 'h4'} -

{text}

+

{text}

{:else if type === 'h5'} -
{text}
+
{text}
{:else if type === 'h6'} -
{text}
+
{text}
{/if} + +