The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/client/components/UserStatus/index.ts

14 lines
479 B

export const colors = {
busy: 'danger-500',
away: 'warning-600',
online: 'success-500',
offline: 'neutral-600',
} as const;
export { default as UserStatus } from './UserStatus';
export { default as Busy } from './Busy';
export { default as Away } from './Away';
export { default as Online } from './Online';
export { default as Offline } from './Offline';
export { default as Loading } from './Loading';
export { default as ReactiveUserStatus } from './ReactiveUserStatus';