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

123456789101112131415161718192021222324252627282930313233343536
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface ButtonProps {
  4. active?: boolean;
  5. block?: boolean;
  6. variant?:
  7. | 'primary'
  8. | 'secondary'
  9. | 'success'
  10. | 'danger'
  11. | 'warning'
  12. | 'info'
  13. | 'dark'
  14. | 'light'
  15. | 'link'
  16. | 'outline-primary'
  17. | 'outline-secondary'
  18. | 'outline-success'
  19. | 'outline-danger'
  20. | 'outline-warning'
  21. | 'outline-info'
  22. | 'outline-dark'
  23. | 'outline-light';
  24. size?: 'sm' | 'lg';
  25. type?: 'button' | 'reset' | 'submit';
  26. href?: string;
  27. disabled?: boolean;
  28. }
  29. declare class Button<
  30. As extends React.ElementType = 'button'
  31. > extends BsPrefixComponent<As, ButtonProps> {}
  32. export default Button;