MDAlert
Provide contextual feedback messages for typical user actions with the handful of available and flexible alerts/notifications.
The below codes are editable and you can modify them the way you want directly from your browser, please use the green button or the ctrl + s to save the changes.
Demo
// Material Dashboard 2 React Components
import MDAlert from "components/MDAlert";
This is an alert!
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| color | 'primary''secondary''info''success''warning''error''light''dark' | info | Change the MDAlertbackground color. | 
| dismissible | bool | false | If truetheMDAlertwill have a closing button for dismissing it. | 
| children* | node | Use to pass node or content inside the MDAlert, its the only required prop. | 
With Icon
// Material Dashboard 2 React Components
import MDAlert from "components/MDAlert";
// @mui material components
import Icon from "@mui/material/Icon";
   
  This is an alert with icon!
Dismissible
// Material Dashboard 2 React Components
import MDAlert from "components/MDAlert";
This is a dismissible alert!
×