MCPcopy
hub / github.com/chartdb/chartdb / BreadcrumbSeparator

Function BreadcrumbSeparator

src/components/breadcrumb/breadcrumb.tsx:75–88  ·  view source on GitHub ↗
({
    children,
    className,
    ...props
}: React.ComponentProps<'li'>)

Source from the content-addressed store, hash-verified

73BreadcrumbPage.displayName = 'BreadcrumbPage';
74
75const BreadcrumbSeparator = ({
76 children,
77 className,
78 ...props
79}: React.ComponentProps<'li'>) => (
80 <li
81 role="presentation"
82 aria-hidden="true"
83 className={cn('[&>svg]:w-3.5 [&>svg]:h-3.5', className)}
84 {...props}
85 >
86 {children ?? <ChevronRightIcon />}
87 </li>
88);
89BreadcrumbSeparator.displayName = 'BreadcrumbSeparator';
90
91const BreadcrumbEllipsis = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected