Skip to Content
DocsResourcesPricingShowcase

Tooltip

Used to display additional information when a user hovers over an element.

SourceStorybookRecipeArk

import { Tooltip } from '@saas-ui/react/tooltip'
<Tooltip content="...">
  <button />
</Tooltip>

Use the showArrow prop to show an arrow on the tooltip.

Use the positioning.placement prop to change the position of the tooltip.

Use the positioning.offset prop to change the offset of the tooltip.

Use the openDelay and closeDelay prop to change the delay of the tooltip.

Use the open and onOpenChange prop to control the visibility of the tooltip.

Use the interactive prop to keep the tooltip open when interacting with its content.

Use the disabled prop to disable the tooltip. When disabled, the tooltip will not be shown.

Previous

Toggle Tip

Next

ClientOnly