mantine-alert-system
Version:
Alert system based on Mantine components
9 lines • 374 B
TypeScript
/// <reference types="react" />
import { AlertStackActions, AlertData, AlertTransitionProps, AlertSpacing } from './types';
export interface AlertStackProps extends AlertTransitionProps {
state: AlertData[];
actions: AlertStackActions;
spacing?: AlertSpacing;
}
export declare const AlertStack: React.FC<AlertStackProps>;
//# sourceMappingURL=AlertStack.d.ts.map