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/views/admin/users/PasswordFieldSkeleton.tsx

17 lines
496 B

import { Box, Skeleton } from '@rocket.chat/fuselage';
const PasswordFieldSkeleton = () => (
<>
<Skeleton w={65} h={20} />
<Box display='flex' flexDirection='row' justifyContent='space-between'>
<Skeleton w={232} h={26} />
<Skeleton w={20} h={20} variant='circle' />
</Box>
<Box display='flex' flexDirection='row' justifyContent='space-between'>
<Skeleton w={105} h={26} />
<Skeleton w={20} h={20} variant='circle' />
</Box>
</>
);
export default PasswordFieldSkeleton;