Function
BreadcrumbSeparator
({
children,
className,
...props
}: React.ComponentProps<"li">)
Source from the content-addressed store, hash-verified
| 63 | } |
| 64 | |
| 65 | function BreadcrumbSeparator({ |
| 66 | children, |
| 67 | className, |
| 68 | ...props |
| 69 | }: React.ComponentProps<"li">) { |
| 70 | return ( |
| 71 | <li |
| 72 | data-slot="breadcrumb-separator" |
| 73 | role="presentation" |
| 74 | aria-hidden="true" |
| 75 | className={cn("[&>svg]:size-3.5", className)} |
| 76 | {...props} |
| 77 | > |
| 78 | {children ?? <ChevronRight />} |
| 79 | </li> |
| 80 | ) |
| 81 | } |
| 82 | |
| 83 | function BreadcrumbEllipsis({ |
| 84 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected