--- title: Pagination description: The Pagination component provides accessible navigation for multi-page content, with customizable alignment and sizing options. --- ## Overview ```html ``` ## States ### Current Use `aria-current="page"` or `aria-current="true"` on a link to indicate that the link is the current page or item. ```html ``` ### Disabled Any element except button without a href attribute is considered disabled. Buttons are disabled using the disabled attribute. If you must use a link, remove the href attribute and set the `aria-disabled="true"` and `aria-role="link"` attributes. ```html ``` ## Alignment ### Center ```html ``` ### End ```html ``` ## Sizes ### Small ```html ``` ### Large ```html ```