Skip to main content

Starwind UI v1.3.1 is now available! Get started

Tooltip

Installation

Usage

Positioning

Control the position and alignment of the tooltip using the side and align props.

Delay

Customize the open and close delay using the openDelay and closeDelay props.

Alignment

Control the alignment of the tooltip relative to its trigger using the align prop.

API Reference

Tooltip

The root component that serves as a container for tooltip content. It manages the tooltip’s visibility and behavior based on user interaction.

  • openDelay: Time in milliseconds to wait before showing the tooltip.
  • closeDelay: Time in milliseconds to wait before hiding the tooltip.
  • disableHoverableContent: When true, prevents the tooltip from staying open when hovering over its content.
PropTypeDefault
openDelaynumber200
closeDelaynumber200
disableHoverableContentbooleanfalse

The component accepts all standard HTML attributes for <div> elements.

TooltipContent

The component that displays the actual tooltip content. It handles positioning and appearance of the tooltip.

  • side: Determines which side of the trigger the tooltip appears on.
  • align: Controls the alignment of the tooltip relative to the trigger.
  • sideOffset: Distance in pixels between the tooltip and the trigger element.
  • avoidCollisions: When true, the tooltip will reposition itself to avoid colliding with the viewport edges.
  • animationDuration: Duration of the open and close animations in milliseconds.
PropTypeDefault
side"top" | "right" | "bottom" | "left""top"
align"start" | "center" | "end""center"
sideOffsetnumber4
avoidCollisionsbooleantrue
animationDurationnumber150

The component accepts all standard HTML attributes for <div> elements.

TooltipTrigger

A wrapper component for the element that triggers the tooltip. The tooltip will appear when the user hovers over or focuses on this trigger element.

The component is a simple wrapper that passes through its children as a slot.

Changelog

v1.1.0

  • tailwind-variants now implemented. This uses tailwind-merge under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.