Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. import SafeAnchor from './SafeAnchor';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface PageItemProps {
  4. disabled?: boolean;
  5. active?: boolean;
  6. activeLabel?: string;
  7. }
  8. declare class PageItem extends BsPrefixComponent<
  9. typeof SafeAnchor,
  10. PageItemProps
  11. > {}
  12. export default PageItem;
  13. export class First extends PageItem {}
  14. export class Prev extends PageItem {}
  15. export class Ellipsis extends PageItem {}
  16. export class Next extends PageItem {}
  17. export class Last extends PageItem {}