import { makeStyles } from '@mui/styles'; import type { Theme } from '../../@styles/theme-provider'; const createClasses = makeStyles(theme => ({ root: { maxWidth: '352px', fontWeight: theme.typography.fontWeightRegular, padding: theme.spacing(2), paddingRight: theme.spacing(8) }, icon: { position: 'absolute', top: 0, right: 0, margin: theme.spacing(2, 2, 0, 0), padding: 0 } })); export default createClasses;