Files
react-test/docs/data/material/components/alert/SimpleAlert.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
304 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
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>
);
}