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

Function PaginationPrevious

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

Source from the content-addressed store, hash-verified

47PaginationLink.displayName = "PaginationLink";
48
49const 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);
55PaginationPrevious.displayName = "PaginationPrevious";
56
57const PaginationNext = ({ className, ...props }: React.ComponentProps<typeof PaginationLink>) => (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected