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

Function PaginationNext

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

Source from the content-addressed store, hash-verified

83}
84
85function PaginationNext({
86 className,
87 ...props
88}: React.ComponentProps<typeof PaginationLink>) {
89 return (
90 <PaginationLink
91 aria-label="Go to next page"
92 size="default"
93 className={cn("gap-1 px-2.5 sm:pr-2.5", className)}
94 {...props}
95 >
96 <span className="hidden sm:block">Next</span>
97 <ChevronRightIcon />
98 </PaginationLink>
99 )
100}
101
102function PaginationEllipsis({
103 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected