Tooltips for your enjoyment!
tooltip : String -> Html msg -> Tooltip msg
Create a Tooltip
tooltip "helpful message"
|> toHtml
Represents a customizeable tooltip
toHtml : Tooltip msg -> Html msg
Convert the Tooltip into a Html msg
withPosition : TooltipPosition -> Tooltip msg -> Tooltip msg
Change the default positioning of the tooltip
tooltip "on the right"
|> withPosition Right
|> toHtml
Defines the positioning of the Tooltip