Action button/link
Usage
actionButton(
inputId,
label,
icon = NULL,
width = NULL,
...,
status = NULL,
outline = FALSE,
size = NULL,
flat = FALSE
)Examples
actionButton(
inputId = "refresh",
label = "Refresh",
icon = "arrow-clockwise",
status = "primary"
)
#> <button class="btn btn-default action-button btn-primary" id="refresh" type="button"><span class="icon-missing" title="Unknown icon: arrow-clockwise" role="img" aria-label="Unknown icon: arrow-clockwise">?</span><span class="action-label">Refresh</span></button>
