Build an argon badge
argonBadge(text = NULL, src = NULL, pill = FALSE, status = "default")
Badge text.
Badge external link.
Pill mode. FALSE by default.
Badge status. See https://demos.creative-tim.com/argon-design-system/docs/components/badge.html.
if (interactive()) {
library(argonR)
argonBadge(
text = "My badge",
src = "https://www.google.com",
pill = FALSE,
status = "success"
)
}