UNPKG

formgen-react

Version:

Formula generator with JSON for react. UI Fabric controls are used for rendering

15 lines (14 loc) 542 B
import { IBaseProps } from 'office-ui-fabric-react/lib/Utilities'; import { IButtonProps } from 'office-ui-fabric-react/lib/Button'; import { IFormBaseInputProps } from '../../formBaseInput/FormBaseInput'; export { IButtonProps }; export interface ICustomButtonProps extends IBaseProps { /** Props for the fabric button */ buttonProps?: IButtonProps; /** Input Key Value */ inputKey?: string; } export interface ICustomButtonInputProps extends IFormBaseInputProps { /** Click event */ onClick(): void; }