component ErrorState { props { class: string = "" type = "error" eyebrow = "" title = "Something went wrong" description = "" errorCode = "" iconClass = "" primaryLabel = "" primaryHref = "" secondaryLabel = "" secondaryHref = "" retryLabel = "" retryAction = "" centered = true compact = false details = [] } view {
{errorCode}

{eyebrow}

{title}

{description}

{#each details.slice(0, 4) as detail}
{detail.label}
{/each}
} }