The Textarea
component allows you to easily create multi-line text inputs.
Value:
You can add resize
prop to change the Textarea
resize behavior.
The Textarea composes the Input component.
Name | Type | Description | Default |
---|---|---|---|
colorScheme | string | - | |
errorBorderColor | string | The border color when the textarea is invalid. Use color keys in `theme.colors` @example errorBorderColor = "red.500" | - |
focusBorderColor | string | The border color when the textarea is focused. Use color keys in `theme.colors` @example focusBorderColor = "blue.500" | - |
isDisabled | boolean | If `true`, the form control will be disabled. This has 2 side effects: - The `FormLabel` will have `data-disabled` attribute - The form element (e.g, Input) will be disabled | - |
isFullWidth | boolean | If `true`, the textarea element will span the full width of its parent | - |
isInvalid | boolean | If `true`, the form control will be invalid. This has 2 side effects: - The `FormLabel` and `FormErrorIcon` will have `data-invalid` set to `true` - The form element (e.g, Input) will have `aria-invalid` set to `true` | - |
isLoading | boolean | If `true`, the form control will be in its `loading` state | - |
isReadOnly | boolean | If `true`, the form control will be readonly | - |
isRequired | boolean | If `true`, the form control will be required. This has 2 side effects: - The `FormLabel` will show a required indicator - The form element (e.g, Input) will have `aria-required` set to `true` | - |
size | string | - | |
variant | string | - |