Create dividers to separate content and apply different styles to them

UIkitDivider(small = FALSE)

Arguments

small

Divider size. FALSE by default. If TRUE, the divider class will be small.

Examples

if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", h1("blabla"), UIkitDivider(), h1("blabla") ), server = function(input, output) {} ) }