Function
PaginationNext
({
className,
...props
}: React.ComponentProps<typeof PaginationLink>)
Source from the content-addressed store, hash-verified
| 83 | } |
| 84 | |
| 85 | function PaginationNext({ |
| 86 | className, |
| 87 | ...props |
| 88 | }: React.ComponentProps<typeof PaginationLink>) { |
| 89 | return ( |
| 90 | <PaginationLink |
| 91 | aria-label="Go to next page" |
| 92 | size="default" |
| 93 | className={cn("gap-1 px-2.5 sm:pr-2.5", className)} |
| 94 | {...props} |
| 95 | > |
| 96 | <span className="hidden sm:block">Next</span> |
| 97 | <ChevronRightIcon /> |
| 98 | </PaginationLink> |
| 99 | ) |
| 100 | } |
| 101 | |
| 102 | function PaginationEllipsis({ |
| 103 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected