PaginationLink() — ui Function Reference
Architecture documentation for the PaginationLink() function in pagination.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 27b82f5e_0d48_635e_7315_cfd32a935934["PaginationLink()"] 65e522e5_ab81_9d77_3823_a51d2044e862["pagination.tsx"] 27b82f5e_0d48_635e_7315_cfd32a935934 -->|defined in| 65e522e5_ab81_9d77_3823_a51d2044e862 style 27b82f5e_0d48_635e_7315_cfd32a935934 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/radix/ui-rtl/pagination.tsx lines 44–65
function PaginationLink({
className,
isActive,
size = "icon",
...props
}: PaginationLinkProps) {
return (
<Button
asChild
variant={isActive ? "outline" : "ghost"}
size={size}
className={cn(className)}
>
<a
aria-current={isActive ? "page" : undefined}
data-slot="pagination-link"
data-active={isActive}
{...props}
/>
</Button>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does PaginationLink() do?
PaginationLink() is a function in the ui codebase, defined in apps/v4/examples/radix/ui-rtl/pagination.tsx.
Where is PaginationLink() defined?
PaginationLink() is defined in apps/v4/examples/radix/ui-rtl/pagination.tsx at line 44.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free