Skip to contents

Creates a consistent info icon with tooltip for providing contextual help throughout the module interface.

Usage

info_icon_tooltip(tooltip_text, placement = "top")

Arguments

tooltip_text

Character string. The text to display in the tooltip

placement

Character string. Where to place the tooltip relative to the icon. Options: "top", "bottom", "left", "right". Default is "top".

Value

A shiny.tag object containing the icon with tooltip

Examples

if (FALSE) { # \dontrun{
info_icon_tooltip("This slider controls the frame position in the timelapse")
info_icon_tooltip("Comparison metrics between frames", placement = "bottom")
} # }