import { useTheme } from '@emotion/react'; import { Box } from '@mui/material'; function AuthBackground(): JSX.Element { const theme = useTheme() as any; const isDark = theme.palette.mode === 'dark'; const color = isDark ? theme.palette.primary.dark : theme.palette.primary.light; return ( ); } export { AuthBackground };