Function
PaginationPrevious
({
className,
...props
}: React.ComponentProps<typeof PaginationLink>)
Source from the content-addressed store, hash-verified
| 66 | } |
| 67 | |
| 68 | function PaginationPrevious({ |
| 69 | className, |
| 70 | ...props |
| 71 | }: React.ComponentProps<typeof PaginationLink>) { |
| 72 | return ( |
| 73 | <PaginationLink |
| 74 | aria-label="Go to previous page" |
| 75 | size="default" |
| 76 | className={cn("gap-1 px-2.5 sm:pl-2.5", className)} |
| 77 | {...props} |
| 78 | > |
| 79 | <ChevronLeftIcon /> |
| 80 | <span className="hidden sm:block">Previous</span> |
| 81 | </PaginationLink> |
| 82 | ) |
| 83 | } |
| 84 | |
| 85 | function PaginationNext({ |
| 86 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected