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

{eyebrow}

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

{title}

{:else if headingLevel === 3}

{title}

{:else}

{title}

{/if} {#if description}

{description}

{/if}
} }