PaginationNext() — ui Function Reference
Architecture documentation for the PaginationNext() function in pagination.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 1382aabb_774f_bae9_2e17_70c32bb2997a["PaginationNext()"] abbdc012_4b4b_899c_97c8_413f21983b01["pagination.tsx"] 1382aabb_774f_bae9_2e17_70c32bb2997a -->|defined in| abbdc012_4b4b_899c_97c8_413f21983b01 style 1382aabb_774f_bae9_2e17_70c32bb2997a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/base/ui-rtl/pagination.tsx lines 86–102
function PaginationNext({
className,
text = "Next",
...props
}: React.ComponentProps<typeof PaginationLink> & { text?: string }) {
return (
<PaginationLink
aria-label="Go to next page"
size="default"
className={cn("pe-1.5!", className)}
{...props}
>
<span className="hidden sm:block">{text}</span>
<ChevronRightIcon data-icon="inline-end" className="rtl:rotate-180" />
</PaginationLink>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does PaginationNext() do?
PaginationNext() is a function in the ui codebase, defined in apps/v4/examples/base/ui-rtl/pagination.tsx.
Where is PaginationNext() defined?
PaginationNext() is defined in apps/v4/examples/base/ui-rtl/pagination.tsx at line 86.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free