MUI の Alert コンポーネントのvariant
最終更新日:2024-08-04
MUI
の Alert
コンポーネントは、 variant
でさまざまなスタイルを設定することができます。
基本的な使い方
import Alert from "@mui/material/Alert";
import Stack from "@mui/material/Stack";
export default function VariantsAlerts() {
return (
<Stack sx={{ width: "100%" }} spacing={2}>
<Alert variant="filled" severity="success">
This is a filled success Alert.
</Alert>
<Alert variant="filled" severity="info">
This is a filled info Alert.
</Alert>
<Alert variant="filled" severity="warning">
This is a filled warning Alert.
</Alert>
<Alert variant="filled" severity="error">
This is a filled error Alert.
</Alert>
</Stack>
);
}