component SectionHeader { props { id: string = "" eyebrow: string = "" title: string = "" description: string = "" align: string = "left" size: string = "default" color: string = "primary" headingLevel: number = 2 maxWidth: string = "3xl" class: string = "" } view {
{#if eyebrow}

{eyebrow}

{/if}
{#if headingLevel === 1}

{title}

{:else if headingLevel === 3}

{title}

{:else}

{title}

{/if} {#if description}

{description}

{/if}
} }