import React from 'react'; import { ChevronRight } from 'lucide-react'; interface BreadcrumbProps { path: string; } export function Breadcrumb({ path }: BreadcrumbProps) { const parts = path.split('/').filter(Boolean); return (
{parts.map((part, index) => ( {index > 0 && } {part} ))}
); }