BreadcrumbSeparator() — ui Function Reference
Architecture documentation for the BreadcrumbSeparator() function in breadcrumb.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD b82cd3d4_c38d_00b8_8592_37f786b1a373["BreadcrumbSeparator()"] 369ab10f_2a58_4f5b_5052_9817434cf362["breadcrumb.tsx"] b82cd3d4_c38d_00b8_8592_37f786b1a373 -->|defined in| 369ab10f_2a58_4f5b_5052_9817434cf362 style b82cd3d4_c38d_00b8_8592_37f786b1a373 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/base/ui/breadcrumb.tsx lines 75–100
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/base/ui/breadcrumb.tsx.
Where is BreadcrumbSeparator() defined?
BreadcrumbSeparator() is defined in apps/v4/registry/bases/base/ui/breadcrumb.tsx at line 75.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free