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/Skeleton.tsx

13 lines
382 B

import { Box, Skeleton } from '@rocket.chat/fuselage';
import type { ComponentProps, ReactElement } from 'react';
export const FormSkeleton = (props: ComponentProps<typeof Box>): ReactElement => (
<Box w='full' pb={24} {...props}>
<Skeleton mbe={8} />
<Skeleton mbe={4} />
<Skeleton mbe={4} />
<Skeleton mbe={8} />
<Skeleton mbe={4} />
<Skeleton mbe={8} />
</Box>
);