UNPKG

modern-react-ui-components

Version:

Modern React + TypeScript component library with Toaster, Input, and DatePicker components

15 lines (14 loc) 423 B
import { default as React } from 'react'; export type ToastType = 'success' | 'failed' | 'info' | 'attention'; export interface ToasterProps { type: ToastType; message: string; subtitle?: string; onDismiss?: () => void; autoHide?: boolean; autoHideDelay?: number; className?: string; } declare const Toaster: React.FC<ToasterProps>; export default Toaster; //# sourceMappingURL=Toaster.d.ts.map