import { Link } from 'react-router-dom'; import { ChevronRight } from 'lucide-react'; import { cn } from '@/lib/utils'; export type BreadcrumbItem = { label: string; href?: string; }; interface BreadcrumbsProps { items: BreadcrumbItem[]; className?: string; } export function Breadcrumbs({ items, className }: BreadcrumbsProps) { if (items.length === 0) return null; return ( ); }