PaginationPrevious() — ui Function Reference
Architecture documentation for the PaginationPrevious() function in pagination.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD a7cd309f_0056_1eb4_7ded_cf8db06d85a3["PaginationPrevious()"] 36060468_9687_5af1_49d6_60df66585dfe["pagination.tsx"] a7cd309f_0056_1eb4_7ded_cf8db06d85a3 -->|defined in| 36060468_9687_5af1_49d6_60df66585dfe style a7cd309f_0056_1eb4_7ded_cf8db06d85a3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/base/ui/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("pl-1.5!", className)}
{...props}
>
<ChevronLeftIcon data-icon="inline-start" className="cn-rtl-flip" />
<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/pagination.tsx.
Where is PaginationPrevious() defined?
PaginationPrevious() is defined in apps/v4/examples/base/ui/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