PaginationNext() — ui Function Reference
Architecture documentation for the PaginationNext() function in pagination.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD ceb8ff49_07c2_a1aa_fd8a_675ff69c9ce3["PaginationNext()"] c5573beb_4d1f_82a7_139a_1510ca04f72c["pagination.tsx"] ceb8ff49_07c2_a1aa_fd8a_675ff69c9ce3 -->|defined in| c5573beb_4d1f_82a7_139a_1510ca04f72c style ceb8ff49_07c2_a1aa_fd8a_675ff69c9ce3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/base/ui/pagination.tsx lines 96–120
function PaginationNext({
className,
text = "Next",
...props
}: React.ComponentProps<typeof PaginationLink> & { text?: string }) {
return (
<PaginationLink
aria-label="Go to next page"
size="default"
className={cn("cn-pagination-next", className)}
{...props}
>
<span className="cn-pagination-next-text hidden sm:block">{text}</span>
<IconPlaceholder
lucide="ChevronRightIcon"
tabler="IconChevronRight"
hugeicons="ArrowRight01Icon"
phosphor="CaretRightIcon"
remixicon="RiArrowRightSLine"
data-icon="inline-end"
className="cn-rtl-flip"
/>
</PaginationLink>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does PaginationNext() do?
PaginationNext() is a function in the ui codebase, defined in apps/v4/registry/bases/base/ui/pagination.tsx.
Where is PaginationNext() defined?
PaginationNext() is defined in apps/v4/registry/bases/base/ui/pagination.tsx at line 96.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free