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

Function PaginationEllipsis

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

Source from the content-addressed store, hash-verified

100}
101
102function PaginationEllipsis({
103 className,
104 ...props
105}: React.ComponentProps<"span">) {
106 return (
107 <span
108 aria-hidden
109 data-slot="pagination-ellipsis"
110 className={cn("flex size-9 items-center justify-center", className)}
111 {...props}
112 >
113 <MoreHorizontalIcon className="size-4" />
114 <span className="sr-only">More pages</span>
115 </span>
116 )
117}
118
119export {
120 Pagination,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected