Alert

Contextual feedback messages with semantic variants and optional dismiss.

Component
@alert.Alert(alert.Props{Variant: alert.VariantInfo, Title: "Heads up!"}) {
    You can change this setting in your account preferences.
}
@alert.Alert(alert.Props{Variant: alert.VariantSuccess, Title: "Saved!"}) {
    Your changes have been applied.
}
@alert.Alert(alert.Props{Variant: alert.VariantWarning, Dismissible: true}) {
    Your trial ends in 3 days.
}
@alert.Alert(alert.Props{Variant: alert.VariantDestructive, Title: "Error"}) {
    Failed to save. Please try again.
}