ObjectUIObjectUI
ComponentsData Display

Alert

Display important messages and notifications

Examples

Info Alert

Destructive Alert

Schema

interface AlertSchema {
  type: 'alert';
  title?: string;
  description?: string;
  variant?: 'default' | 'destructive';
  icon?: string;
  className?: string;
}

On this page