import { useTheme } from '@/contexts/ThemeContext' import { styled } from '@mui/material/styles' import logoRed from '@/assets/logo/red.svg'; import logoWhite from '@/assets/logo/white.svg'; type LoadingPageProps = { text: string; value:number }; const LoginIllustration = styled('img')(({ theme }) => ({ zIndex: 2, blockSize: 'auto', maxBlockSize: 680, maxInlineSize: '100%', margin: theme.spacing(12), [theme.breakpoints.down(1536)]: { maxBlockSize: 550 }, [theme.breakpoints.down('lg')]: { maxBlockSize: 450 } })) const LoadingPage = ({ text, value }: LoadingPageProps) => { const { isDark } = useTheme(); return (
Sage Logo {/* { isDark ? ( ):( ) } */}
{/* */}
{text} {value}%...
); } export default LoadingPage;