Tailwind CSS Tooltip - Props



The following props are available for tooltip component. These are the custom props that come with we've added for the tooltip component and you can use all the other native props as well.

Attribute Type Description Default
placementPlacement Change tooltip placement top
labelstring Add content for tooltip ''
animationboolean Change tooltip animation undefined

Types - Placement

type placement = 
  | "top"
  | "topstart"
  | "topend"
  | "right"
  | "rightstart"
  | "rightend"
  | "bottom"
  | "bottomstart"
  | "bottomend"
  | "left"
  | "leftstart"
  | "leftend"