Tailwind CSS Toast - Props

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

Attribute Type Description Default
placementPlacement Change toast placement top
titlestring Change title ""
contentstring Change content required
timenumber Change time before auto-dismiss 0

Types - Placement

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