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/sidebar/Item/ExtendedSkeleton.js

17 lines
462 B

import { Box, Skeleton } from '@rocket.chat/fuselage';
import React from 'react';
import Extended from './Extended';
const ExtendedSkeleton = ({ showAvatar }) => (
<Box height='x44'>
<Extended
title={<Skeleton width='100%' />}
titleIcon={<Box mi='x4'>{<Skeleton width={12} />}</Box>}
subtitle={<Skeleton width='100%' />}
avatar={showAvatar && <Skeleton variant='rect' width={38} height={38} />}
/>
</Box>
);
export default ExtendedSkeleton;