2022-07-13 01:45:36 +00:00

12 lines
236 B
TypeScript

import withStyles from '@mui/styles/withStyles';
import Alert from '@mui/material/Alert';
export const StyledAlert = withStyles({
root: {
padding: '10px 15px',
margin: '5px 0px ',
},
})(Alert);
export default StyledAlert;