shadcn-templ

Alert

Displays a callout for user attention.

Default

templ
templ AlertDemo() {
	@ui.Alert(ui.AlertVariantDefault, "max-w-md", nil) {
		@ui.AlertTitle("", nil) {
			Success! Your changes have been saved
		}
		@ui.AlertDescription("", nil) {
			This is an alert with an icon, a title and a description.
		}
	}
}

Destructive

templ
templ AlertDestructive() {
	@ui.Alert(ui.AlertVariantDestructive, "max-w-md", nil) {
		@ui.AlertTitle("", nil) {
			Unable to process your payment
		}
		@ui.AlertDescription("", nil) {
			Please verify your billing information and try again.
		}
	}
}