Function
BreadcrumbEllipsis
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 89 | BreadcrumbSeparator.displayName = "BreadcrumbSeparator" |
| 90 | |
| 91 | const BreadcrumbEllipsis = ({ |
| 92 | className, |
| 93 | ...props |
| 94 | }: React.ComponentProps<"span">) => ( |
| 95 | <span |
| 96 | role="presentation" |
| 97 | aria-hidden="true" |
| 98 | className={cn("flex h-9 w-9 items-center justify-center", className)} |
| 99 | {...props} |
| 100 | > |
| 101 | <MoreHorizontal className="h-4 w-4" /> |
| 102 | <span className="sr-only">More</span> |
| 103 | </span> |
| 104 | ) |
| 105 | BreadcrumbEllipsis.displayName = "BreadcrumbElipssis" |
| 106 | |
| 107 | export { |
Callers
nothing calls this directly
Tested by
no test coverage detected