bs_button: Button

View source: R/button.R

bs_buttonR Documentation

Button

Description

This function makes it a little easier to make Bootstrap-friendly buttons; it wraps htmltools::tags for buttons.

Usage

bs_button(
  label,
  button_type = c("default", "primary", "success", "info", "warning", "danger"),
  button_size = c("default", "large", "small", "extra-small"),
  ...
)

Arguments

label

character (HTML), button label

button_type

character, one of the standard Bootstrap types

button_size

character, size of the button

...

attributes (named arguments) and children (unnamed arguments) of the button, passed to

Value

Object with S3 class, shiny.tag, <button/>.

See Also

https://getbootstrap.com/docs/3.3/css/#buttons

Examples

bs_button("Click me", button_type = "primary", button_size = "small")

bsplus documentation built on Nov. 16, 2022, 1:11 a.m.