MCPcopy Create free account
hub / github.com/Seanium/ChatMap / PaginationEllipsis

Function PaginationEllipsis

components/ui/pagination.tsx:94–106  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<"span">)

Source from the content-addressed store, hash-verified

92PaginationNext.displayName = "PaginationNext"
93
94const PaginationEllipsis = ({
95 className,
96 ...props
97}: React.ComponentProps<"span">) => (
98 <span
99 aria-hidden
100 className={cn("flex h-9 w-9 items-center justify-center", className)}
101 {...props}
102 >
103 <MoreHorizontal className="h-4 w-4" />
104 <span className="sr-only">More pages</span>
105 </span>
106)
107PaginationEllipsis.displayName = "PaginationEllipsis"
108
109export {

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected