type Crumb = { label: string action?: () => void } type BreadcrumbsProps = { items: Crumb[] } export function Breadcrumbs({ items }: BreadcrumbsProps) { if (!items.length) return null return (