Function
BreadcrumbPage
({ className, ...props }: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 50 | } |
| 51 | |
| 52 | function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">) { |
| 53 | return ( |
| 54 | <span |
| 55 | data-slot="breadcrumb-page" |
| 56 | role="link" |
| 57 | aria-disabled="true" |
| 58 | aria-current="page" |
| 59 | className={cn("text-foreground font-normal", className)} |
| 60 | {...props} |
| 61 | /> |
| 62 | ) |
| 63 | } |
| 64 | |
| 65 | function BreadcrumbSeparator({ |
| 66 | children, |
Callers
nothing calls this directly
Tested by
no test coverage detected