Anyone know how to change the shape of a action button from a square to a circle in shiny??
library(shiny)
ui <- fluidPage(
h1("Some text:"),
tags$head(tags$script(src = "Welcome.js")),
tags$button(id="intro",
type="button",
class="btn action-button btn-success btn-lg ",
strong(HTML('<i class="icon-star"> </i>Some text')))
)
Thanks
DC