Indicate important notes and highlight parts of your content
UIkitLabel(text = NULL, color = NULL)
text | Label Text. |
---|---|
color | Label color: "success", "warning", "danger". |
if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", UIkitLabel( color = "danger", text = "label" ), UIkitLabel( color = "warning", text = "label" ), UIkitLabel( color = "success", text = "label" ), UIkitLabel(text = "label") ), server = function(input, output) {} ) }