11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
|
|
import Alert from '@mui/material/Alert';
|
||
|
|
import CheckIcon from '@mui/icons-material/Check';
|
||
|
|
|
||
|
|
export default function SimpleAlert() {
|
||
|
|
return (
|
||
|
|
<Alert icon={<CheckIcon fontSize="inherit" />} severity="success">
|
||
|
|
Here is a gentle confirmation that your action was successful.
|
||
|
|
</Alert>
|
||
|
|
);
|
||
|
|
}
|