Function
BreadcrumbList
({ className, ...props }: React.ComponentProps<'ol'>)
Source from the content-addressed store, hash-verified
| 9 | } |
| 10 | |
| 11 | function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>) { |
| 12 | return ( |
| 13 | <ol |
| 14 | data-slot="breadcrumb-list" |
| 15 | className={cn( |
| 16 | 'text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm break-words sm:gap-2.5', |
| 17 | className, |
| 18 | )} |
| 19 | {...props} |
| 20 | /> |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | function BreadcrumbItem({ className, ...props }: React.ComponentProps<'li'>) { |
| 25 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected