mantine-alert-system
Version:
Alert system based on Mantine components
9 lines • 351 B
TypeScript
/// <reference types="react" />
import { AlertData, AlertTransitionProps } from './types';
export interface AlertSwitchProps extends AlertTransitionProps {
switchMode?: 'in-out' | 'out-in';
data: AlertData | null;
onHide: () => void;
}
export declare const AlertSwitch: React.FC<AlertSwitchProps>;
//# sourceMappingURL=AlertSwitch.d.ts.map