Indicate important notes and highlight parts of your content

UIkitLabel(text = NULL, color = NULL)

Arguments

text

Label Text.

color

Label color: "success", "warning", "danger".

Examples

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) {} ) }