breadcrumb.tsx — ui Source File
Architecture documentation for breadcrumb.tsx, a tsx file in the ui codebase. 5 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 319798fa_0878_f3cc_f0d8_e577593c0b3d["breadcrumb.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] 319798fa_0878_f3cc_f0d8_e577593c0b3d --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 3d9438e8_7604_787c_4898_907262aff28b["utils"] 319798fa_0878_f3cc_f0d8_e577593c0b3d --> 3d9438e8_7604_787c_4898_907262aff28b 9c25e96d_58e7_da5f_38f2_06bde0124112["merge-props"] 319798fa_0878_f3cc_f0d8_e577593c0b3d --> 9c25e96d_58e7_da5f_38f2_06bde0124112 54befa66_d51c_07e2_ec3f_848afbcd88a7["use-render"] 319798fa_0878_f3cc_f0d8_e577593c0b3d --> 54befa66_d51c_07e2_ec3f_848afbcd88a7 d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"] 319798fa_0878_f3cc_f0d8_e577593c0b3d --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3 style 319798fa_0878_f3cc_f0d8_e577593c0b3d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import * as React from "react"
import { cn } from "@/examples/base/lib/utils"
import { mergeProps } from "@base-ui/react/merge-props"
import { useRender } from "@base-ui/react/use-render"
import { ChevronRightIcon, MoreHorizontalIcon } from "lucide-react"
function Breadcrumb({ className, ...props }: React.ComponentProps<"nav">) {
return (
<nav
aria-label="breadcrumb"
data-slot="breadcrumb"
className={cn(className)}
{...props}
/>
)
}
function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">) {
return (
<ol
data-slot="breadcrumb-list"
className={cn(
"text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm wrap-break-word",
className
)}
{...props}
/>
)
}
function BreadcrumbItem({ className, ...props }: React.ComponentProps<"li">) {
return (
<li
data-slot="breadcrumb-item"
className={cn("inline-flex items-center gap-1", className)}
{...props}
/>
)
}
function BreadcrumbLink({
className,
render,
...props
}: useRender.ComponentProps<"a">) {
return useRender({
defaultTagName: "a",
props: mergeProps<"a">(
{
className: cn("hover:text-foreground transition-colors", className),
},
props
),
render,
state: {
slot: "breadcrumb-link",
},
})
}
// ... (62 more lines)
Domain
Subdomains
Functions
Dependencies
- lucide-react
- merge-props
- react
- use-render
- utils
Source
Frequently Asked Questions
What does breadcrumb.tsx do?
breadcrumb.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, Changelog subdomain.
What functions are defined in breadcrumb.tsx?
breadcrumb.tsx defines 7 function(s): Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator.
What does breadcrumb.tsx depend on?
breadcrumb.tsx imports 5 module(s): lucide-react, merge-props, react, use-render, utils.
Where is breadcrumb.tsx in the architecture?
breadcrumb.tsx is located at apps/v4/examples/base/ui-rtl/breadcrumb.tsx (domain: DocumentationAtlas, subdomain: Changelog, directory: apps/v4/examples/base/ui-rtl).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free