Tailwind CSS Popover - Props



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

Attribute Type Description Default
placement Placement Change popover placement top
animation boolean Change popover animation false

Types - Placement

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