Pagination

A vertically stacked set of interactive headings that each reveal a section of content.

import { Pagination } from '@iftakhar/ui';

  <Pagination 
    next={{
      icon: '>>',
      className: 'rounded cursor-pointer',
    }}
    prev={{
      icon: '<<',
      className: 'rounded cursor-pointer',
    }}
    current={page}
    pageSize={10}
    total={100}
    onChange={handlePageChange}
  />