Function
PaginationEllipsis
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 100 | } |
| 101 | |
| 102 | function PaginationEllipsis({ |
| 103 | className, |
| 104 | ...props |
| 105 | }: React.ComponentProps<"span">) { |
| 106 | return ( |
| 107 | <span |
| 108 | aria-hidden |
| 109 | data-slot="pagination-ellipsis" |
| 110 | className={cn("flex size-9 items-center justify-center", className)} |
| 111 | {...props} |
| 112 | > |
| 113 | <MoreHorizontalIcon className="size-4" /> |
| 114 | <span className="sr-only">More pages</span> |
| 115 | </span> |
| 116 | ) |
| 117 | } |
| 118 | |
| 119 | export { |
| 120 | Pagination, |
Callers
nothing calls this directly
Tested by
no test coverage detected