Pagination API
Pagination links paged content, CMS lists, and docs indexes with accessible current/disabled states.
Preview components
Open the component docs to see examples, combinations, and usage patterns built on top of this API.
- PaginationPaged navigation examples.
Preview
Import
import { Pagination } from "@axonyx/react";Props
| Prop | Type | Default | Description |
|---|---|---|---|
| items | PaginationItem[] | required | Page links and states. |
| label | string | "Pagination" | Accessible nav label. |
| item.current | boolean | false | Marks current page. |
| item.disabled | boolean | false | Disables page item. |
CSS contract
.ax-pagination [data-current] [data-disabled]