Alert
Alert banners for important messages.
Import
tsx
import { ZAlert } from "@zurto/ui";Usage
tsx
<ZAlert variant="success">Operation successful!</ZAlert>
<ZAlert variant="error" title="Error">Something went wrong.</ZAlert>Props
| Prop | Type | Default | Description |
|---|---|---|---|
variant | 'info' | 'success' | 'warning' | 'error' | 'info' | Alert type |
title | string | – | Optional title |
dismissible | boolean | false | Show close button |
onDismiss | () => void | – | Dismiss handler |