({ className, ...props }: React.ComponentProps<typeof PaginationLink>)
| 55 | PaginationPrevious.displayName = "PaginationPrevious"; |
| 56 | |
| 57 | const PaginationNext = ({ className, ...props }: React.ComponentProps<typeof PaginationLink>) => ( |
| 58 | <PaginationLink aria-label="Go to next page" size="default" className={cn("gap-1 pr-2.5", className)} {...props}> |
| 59 | <span>Next</span> |
| 60 | <ChevronRightIcon className="h-4 w-4" /> |
| 61 | </PaginationLink> |
| 62 | ); |
| 63 | PaginationNext.displayName = "PaginationNext"; |
| 64 | |
| 65 | const PaginationEllipsis = ({ className, ...props }: React.ComponentProps<"span">) => ( |