R/ui_elements.R

Defines functions customDownloadButton

Documented in customDownloadButton

#' Download button with custom icon
#' https://stackoverflow.com/questions/49350509/adding-removing-icon-in-downloadbutton-and-fileinput
#' @export
customDownloadButton <- function(outputId, label = "Download", icon = icon("download")){
  shiny::tags$a(id = outputId,
    class = "btn btn-default shiny-download-link",
    href = "",
    target = "_blank",
    download = NA,
    icon, label)
}
singha53/omicsBioAnalytics documentation built on June 9, 2020, 8:02 p.m.