bootstrap.ts 184 B

1234567891011
  1. export type BsStyle =
  2. | 'primary'
  3. | 'secondary'
  4. | 'danger'
  5. | 'info'
  6. | 'default'
  7. | 'link'
  8. | 'warning'
  9. | 'success'
  10. export type BsSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'