df-forms-preview-pack
Version:
A comprehensive React form preview component library with form controls, validation, conditional logic, and responsive design
15 lines • 467 B
TypeScript
import React from 'react';
import './ThresholdAlert.scss';
interface IThresholdAlertProps {
component: any;
condition: any;
currentValue: string | number;
thresholdValue: string | number;
formTemplateId?: string;
onDismiss?: () => void;
onIssueRaised?: (conditionId: string) => void;
isIssueRaised?: boolean;
}
export declare const ThresholdAlert: React.FC<IThresholdAlertProps>;
export {};
//# sourceMappingURL=ThresholdAlert.d.ts.map