The InputText component is a textarea input field.
Prop | Type | Description |
---|---|---|
className | string | Additional CSS classes. |
name | string | Identifier for the input in form submission. |
label | string | Label text for the input field. |
minLength | number | Minimum input length. |
maxLength | number | Maximum input length. |
register | function | Function to register the input with the useForm hook. |
uppercase | boolean | Forces text to be uppercase. |
required | boolean | Specifies if the field is required. |
focused | boolean | Whether the input should be focused on mount. |
disabled | boolean | Disables interaction with the input field. |