MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / BreadcrumbEllipsis

Function BreadcrumbEllipsis

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

Source from the content-addressed store, hash-verified

89BreadcrumbSeparator.displayName = "BreadcrumbSeparator"
90
91const BreadcrumbEllipsis = ({
92 className,
93 ...props
94}: React.ComponentProps<"span">) => (
95 <span
96 role="presentation"
97 aria-hidden="true"
98 className={cn("flex h-9 w-9 items-center justify-center", className)}
99 {...props}
100 >
101 <MoreHorizontal className="h-4 w-4" />
102 <span className="sr-only">More</span>
103 </span>
104)
105BreadcrumbEllipsis.displayName = "BreadcrumbElipssis"
106
107export {

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected