We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f90c6a commit a2b7e62Copy full SHA for a2b7e62
services/web-ui/src/views/LoadingView/LoadingView.tsx
@@ -1,6 +1,8 @@
1
import { ReactElement } from "react";
2
3
-import { Box, CircularProgress } from "@mui/material";
+import { Favorite } from "@mui/icons-material";
4
+import { Box } from "@mui/material";
5
+import { motion } from "framer-motion";
6
7
export function LoadingView(): ReactElement {
8
return (
@@ -12,7 +14,15 @@ export function LoadingView(): ReactElement {
12
14
height: "100vh",
13
15
}}
16
>
- <CircularProgress />
17
+ <Favorite
18
+ animate={{
19
+ scale: [1, 1.5, 1],
20
+ }}
21
+ color="primary"
22
+ component={motion.svg}
23
+ sx={{ fontSize: 60, mb: 2 }}
24
+ transition={{ repeat: Number.POSITIVE_INFINITY }}
25
+ />
26
</Box>
27
);
28
}
0 commit comments