UNPKG

finform-react-builder

Version:

A powerful, flexible React form builder with dynamic field rendering, custom validation, multi-step forms, Material-UI integration, image component support, toggle/radio buttons, switches, autocomplete, and advanced button positioning

9 lines (8 loc) 241 B
import { default as React } from 'react'; import { FormButton } from './types'; interface CustomButtonsProps { buttons: FormButton[]; disabled?: boolean; } export declare const CustomButtons: React.FC<CustomButtonsProps>; export {};