diff --git a/src/components/ui/Breadcrumbs.tsx b/src/components/ui/Breadcrumbs.tsx index 2a062505..f6733b78 100644 --- a/src/components/ui/Breadcrumbs.tsx +++ b/src/components/ui/Breadcrumbs.tsx @@ -30,6 +30,8 @@ export interface BreadcrumbItem { current?: boolean; /** Optional click handler (for custom navigation) */ onClick?: (e: React.MouseEvent) => void; + /** Whether this item is a skeleton loading placeholder */ + isSkeleton?: boolean; } export interface BreadcrumbsProps {