How can disable the alert, I didn't find a boolean parameter for this in the documentation.
import React from 'react';
import Alert from '@material-ui/lab/Alert';
export default function SimpleAlerts() {
const classes = useStyles();
return (
<div>
<Alert severity="error">This is an error alert — check it out!</Alert>
</div>
);
}