import React, { Component } from "react"; import { withStyles } from "@material-ui/core/styles"; import { alpha } from "@material-ui/core/styles"; import Typography from "@material-ui/core/Typography"; const styles = (theme) => ({ alert: { marginBottom: "20px", border: `1px solid ${theme.palette.primary.main}`, padding: "10px 20px", borderRadius: "4px", background: alpha(theme.palette.primary.main, 0.3), color: "rgb(70,70,70)", }, }); export class Alert extends Component { render() { return (