import PropTypes from 'prop-types'; // material-ui import { Box } from '@mui/material'; // project import import MainCard from 'components/MainCard'; // ==============================|| AUTHENTICATION - CARD WRAPPER ||============================== // const AuthCard = ({ children, ...other }) => ( *': { flexGrow: 1, flexBasis: '50%' } }} content={false} {...other} border={false} boxShadow > {children} ); AuthCard.propTypes = { children: PropTypes.node }; export default AuthCard;