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
placement Placement Change tooltip placement top
label string Add content for tooltip ''
animation boolean Change tooltip animation undefined

Types - Placement

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