import { MainCard } from '@/components/MainCard'; import { Box } from '@mui/material'; import { useTheme } from '@mui/material/styles'; import { PropsWithChildren } from 'react'; type AuthCardProps = PropsWithChildren; function AuthCard({ children }: AuthCardProps) { const theme = useTheme(); return ( *': { flexGrow: 1, flexBasis: '50%' } }} content={false} border={false} boxShadow // @ts-ignore shadow={theme.customShadows.z1} > {children} ); } export { AuthCard }; export type { AuthCardProps };