Alerts
Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.
Examples
Primary! This is a primary alert—check it out!
Info! This is a info alert—check it out!
Success! This is a success alert—check it out!
Danger! This is a danger alert—check it out!
Warning! This is a warning alert—check it out!
Default! This is a warning alert—check it out!
<div>
<base-alert type="primary">
<strong>Primary!</strong> This is a primary alert—check it out!
</base-alert>
<base-alert type="info">
<strong>Info!</strong> This is a info alert—check it out!
</base-alert>
<base-alert type="success">
<strong>Success!</strong> This is a success alert—check it out!
</base-alert>
<base-alert type="danger">
<strong>Danger!</strong> This is a danger alert—check it out!
</base-alert>
<base-alert type="warning">
<strong>Warning!</strong> This is a warning alert—check it out!
</base-alert>
<base-alert type="default">
<strong>Default!</strong> This is a warning alert—check it out!
</base-alert>
</div>
Dismissing
Primary! This is a primary alert—check it out!
Info! This is a info alert—check it out!
Success! This is a success alert—check it out!
Danger! This is a danger alert—check it out!
Warning! This is a warning alert—check it out!
Default! This is a warning alert—check it out!
<div>
<base-alert type="primary" dismissible>
<strong>Primary!</strong> This is a primary alert—check it out!
</base-alert>
<base-alert type="info" dismissible>
<strong>Info!</strong> This is a info alert—check it out!
</base-alert>
<base-alert type="success" dismissible>
<strong>Success!</strong> This is a success alert—check it out!
</base-alert>
<base-alert type="danger" dismissible>
<strong>Danger!</strong> This is a danger alert—check it out!
</base-alert>
<base-alert type="warning" dismissible>
<strong>Warning!</strong> This is a warning alert—check it out!
</base-alert>
<base-alert type="default" dismissible>
<strong>Default!</strong> This is a warning alert—check it out!
</base-alert>
</div>