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