Function
Pagination
({ className, ...props }: React.ComponentProps<"nav">)
Source from the content-addressed store, hash-verified
| 9 | import { Button, buttonVariants } from "@/components/ui/button" |
| 10 | |
| 11 | function 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 | |
| 23 | function PaginationContent({ |
| 24 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected