component PageHeader { props { class: string = "" eyebrow = "" title = "" description = "" primaryLabel = "" primaryHref = "" secondaryLabel = "" secondaryHref = "" icon = "sparkles" centered = false compact = false showBreadcrumbs = false breadcrumbParent = "" breadcrumbParentHref = "" breadcrumbCurrent = "" highlights = [] } view {
{eyebrow}

{title}

{description}

{#each highlights as highlight}

{highlight.title}

{highlight.description}

{/each}
} }