import {usePagination, PaginationItemType} from "@heroui/react"; export const ChevronIcon = (props) => { return ( ); }; export default function App() { const {activePage, range, setPage, onNext, onPrevious} = usePagination({ total: 6, showControls: true, siblings: 10, boundaries: 10, }); return (

Active page: {activePage}

); }