Build an argon alert
argonAlert(..., icon = NULL, status = "default", closable = TRUE)
Alert content.
Alert status. See https://demos.creative-tim.com/argon-design-system/docs/components/alerts.html.
Whether to make the alert closable or not. TRUE by default.
if (interactive()) {
library(argonR)
argonAlert(
icon = argonIcon("basket"),
status = "danger",
"This is an alert",
closable = TRUE
)
}