19 lines
310 B
TypeScript
19 lines
310 B
TypeScript
|
/**
|
||
|
* 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';
|
||
|
} = {
|
||
|
CONTAINED: 'contained'
|
||
|
};
|