MCPcopy Create free account
hub / github.com/code100x/daily-code / PaginationNext

Function PaginationNext

packages/ui/src/shad/ui/pagination.tsx:57–62  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<typeof PaginationLink>)

Source from the content-addressed store, hash-verified

55PaginationPrevious.displayName = "PaginationPrevious";
56
57const 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);
63PaginationNext.displayName = "PaginationNext";
64
65const PaginationEllipsis = ({ className, ...props }: React.ComponentProps<"span">) => (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected