PaginationThe Pagination component enables the user to select a specific page from a range of pages.SourceUsage# Demo# import { Pagination } from "pigment-ui"; import { useState } from "react"; function PaginationDemo() { const [page, setPage] = useState(1); return ( <Pagination total={10} page={page} onChange={setPage} /> ); } Edit this pageNumberFieldPopover