BreadcrumbSeparator() — ui Function Reference
Architecture documentation for the BreadcrumbSeparator() function in breadcrumb.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 482be2de_a7d7_e968_3660_c414e4ae5a56["BreadcrumbSeparator()"] 38824dce_c8d2_3374_f5d0_47162b890818["breadcrumb.tsx"] 482be2de_a7d7_e968_3660_c414e4ae5a56 -->|defined in| 38824dce_c8d2_3374_f5d0_47162b890818 style 482be2de_a7d7_e968_3660_c414e4ae5a56 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/radix/ui/breadcrumb.tsx lines 72–97
function BreadcrumbSeparator({
children,
className,
...props
}: React.ComponentProps<"li">) {
return (
<li
data-slot="breadcrumb-separator"
role="presentation"
aria-hidden="true"
className={cn("cn-breadcrumb-separator", className)}
{...props}
>
{children ?? (
<IconPlaceholder
lucide="ChevronRightIcon"
tabler="IconChevronRight"
hugeicons="ArrowRight01Icon"
phosphor="CaretRightIcon"
remixicon="RiArrowRightSLine"
className="cn-rtl-flip"
/>
)}
</li>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does BreadcrumbSeparator() do?
BreadcrumbSeparator() is a function in the ui codebase, defined in apps/v4/registry/bases/radix/ui/breadcrumb.tsx.
Where is BreadcrumbSeparator() defined?
BreadcrumbSeparator() is defined in apps/v4/registry/bases/radix/ui/breadcrumb.tsx at line 72.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free