Skip to contents

Visit the documentation at https://mui.com/api/Button/ for more information.

Usage

Button.shinyInput(inputId, ...)

Arguments

inputId

the shiny input id

...

args to pass to element

Examples

library(shiny.mui)
library(shiny)


component_example(tagList(
  Button.shinyInput("button1", "Text", variant="text"),
  Button.shinyInput("button1", "Contained", variant="contained"),
  Button.shinyInput("button1", "Outlined", variant="outlined"),
))