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) 368 B
import { default as React } from 'react'; import { TextFieldProps } from '@mui/material'; export type FinDateFieldProps = TextFieldProps & { label?: React.ReactNode; labelPosition?: 'inner' | 'top' | 'none'; labelVariant?: 'caption' | 'body2' | 'subtitle2' | 'h6'; [key: string]: any; }; export declare const FinDateField: React.FC<FinDateFieldProps>;