UNPKG

eventx-design-system

Version:
11 lines 330 B
import React from 'react'; export interface AlertProps { variant?: 'success' | 'error' | 'warning' | 'info'; title?: string; children: React.ReactNode; dismissible?: boolean; onDismiss?: () => void; className?: string; } export declare const Alert: React.FC<AlertProps>; //# sourceMappingURL=Alert.d.ts.map