ComponentsGlassPaginationNavigation control for paginated lists with page numbers and ellipses.Preview Previous1234510Next Usage import { GlassPagination } from "koori-ui"; import { useState } from "react"; const [page, setPage] = useState(1); <GlassPagination total={10} current={page} onPageChange={setPage} /> Props PropTypeDefaultDescriptiontotalnumber—Total number of pagescurrentnumber—Currently active page (1-indexed)onPageChange(page: number) => void—Fired when the user picks a pagesiblingCountnumber1Pages shown on each side of the current page All native <nav> props are also accepted.PreviousGlassNavigationMenuNextGlassScrollArea