Function
BreadcrumbSeparator
({
children,
className,
...props
}: React.ComponentProps<"li">)
Source from the content-addressed store, hash-verified
| 73 | BreadcrumbPage.displayName = "BreadcrumbPage" |
| 74 | |
| 75 | const BreadcrumbSeparator = ({ |
| 76 | children, |
| 77 | className, |
| 78 | ...props |
| 79 | }: React.ComponentProps<"li">) => ( |
| 80 | <li |
| 81 | role="presentation" |
| 82 | aria-hidden="true" |
| 83 | className={cn("[&>svg]:size-3.5", className)} |
| 84 | {...props} |
| 85 | > |
| 86 | {children ?? <ChevronRightIcon />} |
| 87 | </li> |
| 88 | ) |
| 89 | BreadcrumbSeparator.displayName = "BreadcrumbSeparator" |
| 90 | |
| 91 | const BreadcrumbEllipsis = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected