alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Merge branch 'development'
author
pdelfan
date
2 months ago
(May 6, 2026, 5:38 PM -0700)
commit
89c89183
89c891835c64550468345f896830d3ea85a153f2
parent
c6b7196f
c6b7196f6717b10798315fe0d09eeef1c8c55323
+13
-8
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
settings
components
accountSummary
Skeleton.AccountSummary.tsx
+13
-8
src/webapp/features/settings/components/accountSummary/Skeleton.AccountSummary.tsx
View file
Reviewed
···
1
1
-
import { Stack, Avatar, Skeleton } from '@mantine/core';
1
1
+
import { Card, Group, Stack, Skeleton } from '@mantine/core';
2
2
+
import classes from './AccountSummary.module.css';
2
3
3
4
export default function AccountSummarySkeleton() {
4
5
return (
5
5
-
<Stack align="center">
6
6
-
<Avatar size={'xl'} radius={'lg'} />
7
7
-
<Stack gap={'xs'} align="center">
8
8
-
<Skeleton w={100} h={28} />
9
9
-
<Skeleton w={80} h={18} />
10
10
-
</Stack>
11
11
-
</Stack>
6
6
+
<Card p={'sm'} radius={'lg'} classNames={{ root: classes.root }}>
7
7
+
<Group gap={'xs'}>
8
8
+
<Skeleton width={56} height={56} radius={'md'} />
9
9
+
<Stack gap={'xs'}>
10
10
+
<Stack gap={0}>
11
11
+
<Skeleton w={120} h={22} />
12
12
+
<Skeleton w={90} h={22} mt={4} />
13
13
+
</Stack>
14
14
+
</Stack>
15
15
+
</Group>
16
16
+
</Card>
12
17
);
13
18
}