wisemapping-frontend/packages/webapp/src/components/form/global-error/styled.ts
Paulo Gustavo Veiga 2a6782f165 Clean up styles.
2021-01-25 17:54:54 -08:00

12 lines
230 B
TypeScript

import { withStyles } from "@material-ui/core";
import { Alert } from "@material-ui/lab";
export const StyledAlert = withStyles({
root:
{
padding: '10px 0px 10px 0px'
}
})(Alert);
export default StyledAlert;