Tooltip
Wrap any component with a Tooltip to provide more information to a user. This component is based on the Tippy library. Any of the options can be passed as props to adjust the tooltip behavior.
Props
Examples
Default Tooltip
The default usage passes in a string as the content
prop
Tooltip with Content
The content
prop is passed in as an Element
Interactive Tooltips
By default when the user tries to interact with a Tooltip it will disappear. By passing the interactive
prop you can click and interact with the tooltip without it disappearing.
Tooltip Max Width
By default the width of the Tooltip is dynamic based on content
. By passing maxWidth
with a string or number you can set the width of the Tooltip.
Tooltip Placement
By default the placement
prop is set to the bottom of the element. Here you may change the the placement of the Tooltip.
Tooltip Themes
By default the theme
prop is set to Dark.
Tooltip Triggers
By passing the trigger
prop you can change how a Tooltip is triggered.