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

Function BreadcrumbEllipsis

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

Source from the content-addressed store, hash-verified

81}
82
83function BreadcrumbEllipsis({
84 className,
85 ...props
86}: React.ComponentProps<"span">) {
87 return (
88 <span
89 data-slot="breadcrumb-ellipsis"
90 role="presentation"
91 aria-hidden="true"
92 className={cn("flex size-9 items-center justify-center", className)}
93 {...props}
94 >
95 <MoreHorizontal className="size-4" />
96 <span className="sr-only">More</span>
97 </span>
98 )
99}
100
101export {
102 Breadcrumb,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected