component EmptyState { props { class: string = "" eyebrow = "" title = "Nothing found" description = "" iconClass = "icon-[lucide--inbox]" primaryLabel = "" primaryHref = "" secondaryLabel = "" secondaryHref = "" compact = false centered = true suggestions = [] } view {

{eyebrow}

{title}

{description}

{#each suggestions.slice(0, 4) as suggestion} {suggestion.label} {/each}
} }