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

10 lines (9 loc) 263 B
import { default as React } from 'react'; export interface FinCheckboxProps { label: string; checked: boolean; disabled?: boolean; onChange: (checked: boolean) => void; sx?: any; } export declare const FinCheckbox: React.FC<FinCheckboxProps>;