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) • 392 B
TypeScript
import { default as React } from 'react';
import { TextFieldProps } from '@mui/material';
export type FinTextareaProps = TextFieldProps & {
labelText?: string;
labelVariant?: 'caption' | 'body2' | 'subtitle2' | 'h6';
hasError?: boolean;
inputTestId?: string;
labelTestId?: string;
errorTestId?: string;
};
export declare const FinTextarea: React.FC<FinTextareaProps>;