MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / BreadcrumbList

Function BreadcrumbList

src/components/ui/breadcrumb.tsx:11–22  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"ol">)

Source from the content-addressed store, hash-verified

9}
10
11function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">) {
12 return (
13 <ol
14 data-slot="breadcrumb-list"
15 className={cn(
16 "text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm break-words sm:gap-2.5",
17 className
18 )}
19 {...props}
20 />
21 )
22}
23
24function BreadcrumbItem({ className, ...props }: React.ComponentProps<"li">) {
25 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected