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

Function PaginationContent

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

Source from the content-addressed store, hash-verified

21}
22
23function PaginationContent({
24 className,
25 ...props
26}: React.ComponentProps<"ul">) {
27 return (
28 <ul
29 data-slot="pagination-content"
30 className={cn("flex flex-row items-center gap-1", className)}
31 {...props}
32 />
33 )
34}
35
36function PaginationItem({ ...props }: React.ComponentProps<"li">) {
37 return <li data-slot="pagination-item" {...props} />

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected