mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-14 19:27:55 +01:00
12 lines
230 B
TypeScript
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; |