R/buttonRow.R

Defines functions buttonRow

Documented in buttonRow

#' Button Row
#'
#' This function creates a row of buttons
#' @param ... Insert button functions in a tagList {shiny}
#' @keywords button row, buttons
#' @export
#' @examples
#'   buttonRow(taglist(
#'   buttonModal(buttonModal("sample-id","ID Form")),
#'   actionButton("submit","Submit Responses", icon = icon("check"))
#'   ))

buttonRow <- function( ...){
  tags$div(class="btn-group", `role`="group", `aria-label`="Basic example", ...)
}
jsdeherrera/shinyBoots documentation built on March 9, 2024, 3:03 a.m.