@dndbuilder.com/react
Version:
Drag and drop builder for React
15 lines (14 loc) • 574 B
TypeScript
import { SettingsType } from '../../types';
import { FC, HTMLAttributes, LabelHTMLAttributes, TextareaHTMLAttributes } from 'react';
export type TextareaControlProps = {
label?: string;
type: SettingsType;
fieldName: string;
mode?: string;
responsive?: boolean;
isLocalized?: boolean;
inputProps?: TextareaHTMLAttributes<HTMLTextAreaElement>;
labelProps?: LabelHTMLAttributes<HTMLLabelElement>;
} & HTMLAttributes<HTMLDivElement>;
export declare const TextareaControl: FC<TextareaControlProps>;
//# sourceMappingURL=textarea.control.d.ts.map