Skip to content

Commit 5e7ac26

Browse files
committed
feat: update CircularProgress color to primary in Loading component
1 parent bf58811 commit 5e7ac26

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

client/src/components/loading/Loading.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import CircularProgress from '@mui/material/CircularProgress';
21
import Box from '@mui/material/Box';
2+
import CircularProgress from '@mui/material/CircularProgress';
3+
34
import { useLoading } from './useLoading';
45

56
export default function Loading() {
@@ -23,7 +24,7 @@ export default function Loading() {
2324
backdropFilter: 'blur(1px)',
2425
backgroundColor: 'rgba(255, 255, 255, 0.5)',
2526
}}>
26-
<CircularProgress color="secondary" size="3rem" />
27+
<CircularProgress color="primary" size="3rem" />
2728
</Box>
2829
);
2930
}

0 commit comments

Comments
 (0)