The TextArea component collects and displays multi-line text input from users.
Explore the available props for the Input component
| Prop | Type | Default | Description |
|---|---|---|---|
| value | string | - | The value of TextArea component. |
| placeholder | string | - | Placeholder text. |
| error | boolean | true | Is the error message enable. |
| helperText | string | Incorrect Value | Error text. |
| disabled | boolean | - | Is the input field disabled. |
| required | boolean | - | Is the input field required. |
| autoComplete | string | on | autoComplete value. |
| style | string | - | Any CSS className to style the TextArea component. |
| inputStyle | string | - | Any CSS className to style the textarea field. |
| errorStyle | string | - | Any CSS className to style the error message. |
| disabledStyle | string | - | Any CSS className to style the disabled field. |
| requiredStyle | string | - | Any CSS className to style the required field. |