diff --git a/src/states/Loading/Loading.jsx b/src/states/Loading/Loading.jsx new file mode 100644 index 0000000..16d5748 --- /dev/null +++ b/src/states/Loading/Loading.jsx @@ -0,0 +1,16 @@ +import {LinearProgress, Stack, useTheme} from "@mui/material"; +import DarkLogo from "@/common/assets/images/logo/dark.webp"; +import LightLogo from "@/common/assets/images/logo/light.webp"; + +export const Loading = ({progress}) => { + const theme = useTheme(); + const logo = theme.palette.mode === "dark" ? DarkLogo : LightLogo; + + return ( + + Logo + + + ) +} \ No newline at end of file