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/basic/userStatus/UserStatus.js

8 lines
306 B

import React from 'react';
import { Box } from '@rocket.chat/fuselage';
import statusColors from '../../../helpers/statusColors';
const UserStatus = React.memo(({ status, ...props }) => <Box size='x12' borderRadius='full' backgroundColor={statusColors[status]} {...props}/>);
export default UserStatus;