UNPKG

digitaform-preview-react

Version:

A comprehensive React form preview component library with form controls,responsive design

13 lines 512 B
import React from 'react'; import { IInstructionComponent, IFormControlChange } from '../df-form-preview-interfaces'; interface DfFormInstructionProps { id: string; properties: IInstructionComponent; mode?: 'edit' | 'preview' | 'test'; onValueChange?: (change: IFormControlChange) => void; className?: string; hideLabel?: boolean; } export declare const DfFormInstruction: React.FC<DfFormInstructionProps>; export default DfFormInstruction; //# sourceMappingURL=DfFormInstruction.d.ts.map