AccordionAlertAlert DialogAspect RatioAvatarBadgeBreadcrumbButtonButton GroupCalendarCardCarouselChartCheckboxCollapsibleComboboxCommandContext MenuData TableDate PickerDialogDirectionDrawerDropdown MenuEmptyFieldHover CardInputInput GroupInput OTPItemKbdLabelMenubarNative SelectNavigation MenuPaginationPopoverProgressRadio GroupResizableScroll AreaSelectSeparatorSheetSidebarSkeletonSliderSonnerSpinnerSwitchTableTabsTextareaToastToggleToggle GroupTooltipTypography
Alert
Displays a callout for user attention.
Default
Success! Your changes have been saved
This is an alert with an icon, a title and a description.
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
Unable to process your payment
Please verify your billing information and try again.
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.
}
}
}