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

12 lines
194 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:
{
2021-01-14 04:46:45 +01:00
2020-12-27 18:58:21 +01:00
}
})(Alert);
export default StyledAlert;