1234567891011121314151617181920 |
- /**
- * The types of the buttons.
- */
- export enum BUTTON_TYPES {
- DESTRUCTIVE = 'destructive',
- PRIMARY = 'primary',
- SECONDARY = 'secondary',
- TERTIARY = 'tertiary'
- }
-
- /**
- * The modes of the buttons.
- */
- export const BUTTON_MODES: {
- CONTAINED: 'contained';
- TEXT: 'text';
- } = {
- CONTAINED: 'contained',
- TEXT: 'text'
- };
|