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
12 lines (11 loc) • 315 B
TypeScript
import { default as React } from 'react';
export interface FinCheckboxProps {
label: string;
checked: boolean;
disabled?: boolean;
onChange: (checked: boolean) => void;
sx?: any;
inputTestId?: string;
labelTestId?: string;
}
export declare const FinCheckbox: React.FC<FinCheckboxProps>;