({ ...props }: React.ComponentProps<"li">)
| 34 | } |
| 35 | |
| 36 | function PaginationItem({ ...props }: React.ComponentProps<"li">) { |
| 37 | return <li data-slot="pagination-item" {...props} /> |
| 38 | } |
| 39 | |
| 40 | type PaginationLinkProps = { |
| 41 | isActive?: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected