This repository has no description
0

Configure Feed

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

semble / src / webapp / features / semble / components / urlAddedBySummary / Skeleton.UrlAddedBySummary.tsx
230 B 10 lines
1import { Avatar, Group, Skeleton } from '@mantine/core'; 2 3export default function UrlAddedBySummarySkeleton() { 4 return ( 5 <Group gap={'xs'}> 6 <Avatar src={null} /> 7 <Skeleton w={'30%'} h={14} /> 8 </Group> 9 ); 10}