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.

constants.any.ts 346B

1234567891011121314151617181920
  1. /**
  2. * The types of the buttons.
  3. */
  4. export enum BUTTON_TYPES {
  5. DESTRUCTIVE = 'destructive',
  6. PRIMARY = 'primary',
  7. SECONDARY = 'secondary',
  8. TERTIARY = 'tertiary'
  9. }
  10. /**
  11. * The modes of the buttons.
  12. */
  13. export const BUTTON_MODES: {
  14. CONTAINED: 'contained';
  15. TEXT: 'text';
  16. } = {
  17. CONTAINED: 'contained',
  18. TEXT: 'text'
  19. };