import type { ReactNode } from "react"; import { cn } from "../../lib/cn"; export type BreadcrumbItem = { content?: ReactNode; current?: boolean; href?: string; label?: string; onClick?: () => void; }; export function Breadcrumbs({ items, }: { items: BreadcrumbItem[]; }) { return ( ); }