This component is represents textarea for <Form />. It requires context which is provided by <FormGroup />.
<Form {...FormProps}>
<FormGroup {...FormGroupProps}>
<TextArea
transform={TransformTypes.capitalize}
{...HTMLTextAreaElementProps}
/>
</FormGroup>
</Form>
where:
transform
- transform input value with specific preset. Optional. Can take on values:TransformTypes.capitalize
,TransformTypes.upperCase
,TransformTypes.none
.