mantine-alert-system
Version:
Alert system based on Mantine components
18 lines • 481 B
TypeScript
import { AlertShow } from './types';
export interface AlertShowSeverities {
success: AlertShow;
info: AlertShow;
warning: AlertShow;
error: AlertShow;
}
interface AlertSeverityOptions {
iconSize?: string | number;
}
export declare const useAlertSeverity: (show: AlertShow, props?: AlertSeverityOptions) => {
success: AlertShow;
info: AlertShow;
warning: AlertShow;
error: AlertShow;
};
export {};
//# sourceMappingURL=use-alert-severity.d.ts.map