Build an argon column
argonColumn(..., width = NULL, center = FALSE, offset = NULL)
Any UI element.
Optional. Column width between 1 and 12.
Whether to center column elements or not. FALSE by default.
Column offset. NULL by default. Importantly, offset + width cannot exceed 12!
if (interactive()) {
library(argonR)
argonColumn(
width = 4,
argonAlert(
icon = "basket",
status = "danger",
"This is an alert",
closable = TRUE
)
)
}