This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / features / notes / components / noteCardModal / Skeleton.NoteCardModalContent.tsx
410 B 16 lines
1import { Avatar, Group, Skeleton, Stack } from '@mantine/core'; 2 3export default function NoteCardModalContentSkeleton() { 4 return ( 5 <Stack gap={'xs'}> 6 <Group gap={5}> 7 <Avatar size={'md'} /> 8 <Skeleton w={100} h={14} /> 9 </Group> 10 {/* Note */} 11 <Skeleton w={'100%'} h={14} /> 12 <Skeleton w={'100%'} h={14} /> 13 <Skeleton w={'100%'} h={14} /> 14 </Stack> 15 ); 16}