@burrow-ui/pagination
v0.1.7
Published
Pagination control for Burrow UI (siblings, boundaries, loop, ellipsis-jump, controlled & uncontrolled)
Maintainers
Readme
@burrow-ui/pagination
Page navigation with siblings, boundaries, ellipsis-jump and optional prev/next chevrons.
import {Pagination} from "@burrow-ui/pagination";
const [page, setPage] = useState(1);
<Pagination
total={42}
page={page}
onChange={setPage}
showControls
variant="bordered"
color="primary"
/>;Inline-SVG chevrons (no icon-pack peer dep). Works as both controlled
(page + onChange) and uncontrolled (initialPage).
