wisemapping-frontend/packages/webapp/src/components/form/global-error/styled.ts

13 lines
241 B
TypeScript
Raw Normal View History

2020-12-27 18:58:21 +01:00
import { withStyles } from "@material-ui/core";
import { Alert } from "@material-ui/lab";
export const StyledAlert = withStyles({
root:
{
width: '300px',
margin:'0 auto'
}
})(Alert);
export default StyledAlert;