This repository has no description
0

Configure Feed

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

semble / src / webapp / features / collections / components / collectionActions / Skeleton.CollectionActions.tsx
299 B 11 lines
1import { Group, Skeleton } from '@mantine/core'; 2 3export default function CollectionActionsSkeleton() { 4 return ( 5 <Group gap={'xs'}> 6 <Skeleton w={34} h={34} radius={'xl'} /> 7 <Skeleton w={34} h={34} radius={'xl'} /> 8 <Skeleton w={34} h={34} radius={'xl'} /> 9 </Group> 10 ); 11}