Function
BreadcrumbEllipsis
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 81 | } |
| 82 | |
| 83 | function BreadcrumbEllipsis({ |
| 84 | className, |
| 85 | ...props |
| 86 | }: React.ComponentProps<"span">) { |
| 87 | return ( |
| 88 | <span |
| 89 | data-slot="breadcrumb-ellipsis" |
| 90 | role="presentation" |
| 91 | aria-hidden="true" |
| 92 | className={cn("flex size-9 items-center justify-center", className)} |
| 93 | {...props} |
| 94 | > |
| 95 | <MoreHorizontal className="size-4" /> |
| 96 | <span className="sr-only">More</span> |
| 97 | </span> |
| 98 | ) |
| 99 | } |
| 100 | |
| 101 | export { |
| 102 | Breadcrumb, |
Callers
nothing calls this directly
Tested by
no test coverage detected