Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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 {}