| 47 | PaginationLink.displayName = "PaginationLink"; |
| 48 | |
| 49 | const PaginationPrevious = ({ className, ...props }: React.ComponentProps<typeof PaginationLink>) => ( |
| 50 | <PaginationLink aria-label="Go to previous page" size="default" className={cn("gap-1 pl-2.5", className)} {...props}> |
| 51 | <ChevronLeftIcon className="h-4 w-4" /> |
| 52 | <span>Previous</span> |
| 53 | </PaginationLink> |
| 54 | ); |
| 55 | PaginationPrevious.displayName = "PaginationPrevious"; |
| 56 | |
| 57 | const PaginationNext = ({ className, ...props }: React.ComponentProps<typeof PaginationLink>) => ( |