PaginationEllipsis() — ui Function Reference
Architecture documentation for the PaginationEllipsis() function in pagination.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 1ad7f12f_3ec4_cceb_2e52_962290e63579["PaginationEllipsis()"] 1b1c5d6f_f820_ddea_04ab_fcdafb0fca65["pagination.tsx"] 1ad7f12f_3ec4_cceb_2e52_962290e63579 -->|defined in| 1b1c5d6f_f820_ddea_04ab_fcdafb0fca65 style 1ad7f12f_3ec4_cceb_2e52_962290e63579 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/radix/ui/pagination.tsx lines 121–145
function PaginationEllipsis({
className,
...props
}: React.ComponentProps<"span">) {
return (
<span
aria-hidden
data-slot="pagination-ellipsis"
className={cn(
"cn-pagination-ellipsis flex items-center justify-center",
className
)}
{...props}
>
<IconPlaceholder
lucide="MoreHorizontalIcon"
tabler="IconDots"
hugeicons="MoreHorizontalCircle01Icon"
phosphor="DotsThreeIcon"
remixicon="RiMoreLine"
/>
<span className="sr-only">More pages</span>
</span>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does PaginationEllipsis() do?
PaginationEllipsis() is a function in the ui codebase, defined in apps/v4/registry/bases/radix/ui/pagination.tsx.
Where is PaginationEllipsis() defined?
PaginationEllipsis() is defined in apps/v4/registry/bases/radix/ui/pagination.tsx at line 121.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free