Skip to main content

Starwind UI v1.3.1 is now available! Get started

Pagination

Installation

Usage

General Notes

The basic pagination component includes previous/next buttons and numbered pages.

Tip

Use the isActive prop on <PaginationLink> to highlight the current page.

API Reference

Pagination

Wrapper for the default pagination component. Accepts all standard HTML attributes for <nav> elements.

PaginationContent

Wrapper for the default pagination content component. Accepts all standard HTML attributes for <ul> elements.

PaginationItem

Wrapper for the default pagination item component. Accepts all standard HTML attributes for <li> elements.

A link component for page numbers with active state support. This uses default starwind button styles and similar props.

PropTypeDefault
isActivebooleanfalse
size"sm" | "md" | "lg" | "icon""icon"
hrefstring-

The component also accepts all HTML anchor <a> attributes.

PaginationNext

A specialized wrapper of <PaginationLink> for the “Next” button that includes a right chevron icon.

PropTypeDefault
size"sm" | "md" | "lg" | "icon""md"
hrefstring-

The component also accepts all HTML anchor <a> attributes.

PaginationPrevious

A specialized wrapper of <PaginationLink> for the “Previous” button that includes a left chevron icon.

PropTypeDefault
size"sm" | "md" | "lg" | "icon""md"
hrefstring-

The component also accepts all HTML anchor <a> attributes.

PaginationEllipsis

Includes a three-dot icon. Accepts all standard HTML attributes for <span> elements.

Changelog

v2.0.0

  • tailwind-variants now implemented. This uses tailwind-merge under the hood to merge Tailwind classes without style conflicts.
  • Removed radius prop now that classes like “rounded-full” can be passed to the components to override, taking advantage of tailwind-variants