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

Function BreadcrumbSeparator

src/components/ui/breadcrumb.tsx:65–81  ·  view source on GitHub ↗
({
  children,
  className,
  ...props
}: React.ComponentProps<"li">)

Source from the content-addressed store, hash-verified

63}
64
65function BreadcrumbSeparator({
66 children,
67 className,
68 ...props
69}: React.ComponentProps<"li">) {
70 return (
71 <li
72 data-slot="breadcrumb-separator"
73 role="presentation"
74 aria-hidden="true"
75 className={cn("[&>svg]:size-3.5", className)}
76 {...props}
77 >
78 {children ?? <ChevronRight />}
79 </li>
80 )
81}
82
83function BreadcrumbEllipsis({
84 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected