Function
PaginationContent
({
className,
...props
}: React.ComponentProps<"ul">)
Source from the content-addressed store, hash-verified
| 21 | } |
| 22 | |
| 23 | function PaginationContent({ |
| 24 | className, |
| 25 | ...props |
| 26 | }: React.ComponentProps<"ul">) { |
| 27 | return ( |
| 28 | <ul |
| 29 | data-slot="pagination-content" |
| 30 | className={cn("flex flex-row items-center gap-1", className)} |
| 31 | {...props} |
| 32 | /> |
| 33 | ) |
| 34 | } |
| 35 | |
| 36 | function PaginationItem({ ...props }: React.ComponentProps<"li">) { |
| 37 | return <li data-slot="pagination-item" {...props} /> |
Callers
nothing calls this directly
Tested by
no test coverage detected