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

Function Pagination

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

Source from the content-addressed store, hash-verified

9import { Button, buttonVariants } from "@/components/ui/button"
10
11function Pagination({ className, ...props }: React.ComponentProps<"nav">) {
12 return (
13 <nav
14 role="navigation"
15 aria-label="pagination"
16 data-slot="pagination"
17 className={cn("mx-auto flex w-full justify-center", className)}
18 {...props}
19 />
20 )
21}
22
23function PaginationContent({
24 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected