mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Co-authored-by: Calinteodor <calin.chitu@8x8.com> Co-authored-by: Robert Pintilii <robert.pin9@gmail.com>
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'
|
|
};
|