Function
Pagination
({ className, ...props }: React.ComponentProps<"nav">)
Source from the content-addressed store, hash-verified
| 5 | import { ButtonProps, buttonVariants } from "@/components/ui/button" |
| 6 | |
| 7 | const 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 | ) |
| 15 | Pagination.displayName = "Pagination" |
| 16 | |
| 17 | const PaginationContent = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected