MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / PaginationPrevious

Function PaginationPrevious

src/components/ui/pagination.tsx:68–83  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof PaginationLink>)

Source from the content-addressed store, hash-verified

66}
67
68function PaginationPrevious({
69 className,
70 ...props
71}: React.ComponentProps<typeof PaginationLink>) {
72 return (
73 <PaginationLink
74 aria-label="Go to previous page"
75 size="default"
76 className={cn("gap-1 px-2.5 sm:pl-2.5", className)}
77 {...props}
78 >
79 <ChevronLeftIcon />
80 <span className="hidden sm:block">Previous</span>
81 </PaginationLink>
82 )
83}
84
85function PaginationNext({
86 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected