import React from 'react'; import { Icon } from '../../../../../Components/Icon'; import Pagination from '../../../../../Components/Pagination'; import Widget from '../../../Widget'; const Paginations: React.FC = () => { return (
Paginations
Pagination
Use the <Pagination /> component for pagination with numbers and text labels
Custom icons
Use any component or text for the prev and next props
} next={} count={10} /> } next={} count={10} /> } next={} count={10} />
First and last pages
Use any component or text for the first and last props
} last={} prev={} next={} count={10} />
); }; export default Paginations;