@open-tender/ui
Version:
A component library for use with the Open Tender web app
15 lines (14 loc) • 479 B
TypeScript
import React from 'react';
import { Handlers, ScreenConfig, Styles } from '../types';
export interface TextAreaProps {
config: ScreenConfig;
labelConfig: ScreenConfig;
handlers: Handlers;
label?: string;
value: string;
isRequired?: boolean;
style?: Styles;
labelStyle?: Styles;
}
declare const TextArea: ({ config, labelConfig, handlers, label, value, isRequired, style, labelStyle }: TextAreaProps) => React.JSX.Element;
export default TextArea;