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/apps/meteor/client/components/deviceManagement/LoggedOutBanner.tsx

15 lines
425 B

import { Banner, Box, Icon } from '@rocket.chat/fuselage';
import type { ReactElement } from 'react';
import { useTranslation } from 'react-i18next';
const LoggedOutBanner = (): ReactElement => {
const { t } = useTranslation();
return (
<Banner variant='warning' icon={<Icon name='warning' size='x24' />}>
<Box textAlign='left'>{t('Logged_Out_Banner_Text')}</Box>
</Banner>
);
};
export default LoggedOutBanner;