Toast
Toast notifications.
Import
tsx
import { ZToast, useToast } from "@zurto/ui";Usage
tsx
const { toast } = useToast();
toast({
title: "Success!",
description: "Your changes have been saved.",
variant: "success",
});Props
| Prop | Type | Default | Description |
|---|---|---|---|
title | string | – | Toast title |
description | string | – | Toast message |
variant | 'default' | 'success' | 'error' | 'warning' | 'default' | Style |
duration | number | 5000 | Auto-dismiss time |