PaginationLink() — supabase Function Reference
Architecture documentation for the PaginationLink() function in pagination.tsx from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 6db398bf_f5d6_62e4_c06c_4338dad30d68["PaginationLink()"] 6215f5f8_959b_0d27_9c02_ce5f395aab88["cn()"] 6db398bf_f5d6_62e4_c06c_4338dad30d68 -->|calls| 6215f5f8_959b_0d27_9c02_ce5f395aab88 style 6db398bf_f5d6_62e4_c06c_4338dad30d68 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/cms/src/components/ui/pagination.tsx lines 32–44
const PaginationLink = ({ className, isActive, size = 'icon', ...props }: PaginationLinkProps) => (
<button
aria-current={isActive ? 'page' : undefined}
className={cn(
buttonVariants({
size,
variant: isActive ? 'outline' : 'ghost',
}),
className
)}
{...props}
/>
)
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does PaginationLink() do?
PaginationLink() is a function in the supabase codebase.
What does PaginationLink() call?
PaginationLink() calls 1 function(s): cn.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free