mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-27 15:43:58 +01:00
12 lines
236 B
TypeScript
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;
|