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

Function Pagination

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

Source from the content-addressed store, hash-verified

5import { ButtonProps, buttonVariants } from "@/components/ui/button"
6
7const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
8 <nav
9 role="navigation"
10 aria-label="pagination"
11 className={cn("mx-auto flex w-full justify-center", className)}
12 {...props}
13 />
14)
15Pagination.displayName = "Pagination"
16
17const PaginationContent = React.forwardRef<

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected