jiti-meet/react/features/base/ui/constants.any.ts

19 lines
310 B
TypeScript
Raw Normal View History

/**
* 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'
};