PaginationEllipsis() — ui Function Reference
Architecture documentation for the PaginationEllipsis() function in pagination.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 5f46f7b9_ca80_e969_411f_7593751e2e26["PaginationEllipsis()"] c5573beb_4d1f_82a7_139a_1510ca04f72c["pagination.tsx"] 5f46f7b9_ca80_e969_411f_7593751e2e26 -->|defined in| c5573beb_4d1f_82a7_139a_1510ca04f72c style 5f46f7b9_ca80_e969_411f_7593751e2e26 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/base/ui/pagination.tsx lines 122–146
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/base/ui/pagination.tsx.
Where is PaginationEllipsis() defined?
PaginationEllipsis() is defined in apps/v4/registry/bases/base/ui/pagination.tsx at line 122.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free