diff --git a/src/components/controls/TextArea/README.md b/src/components/controls/TextArea/README.md
index 40324ee213..7de9b89a05 100644
--- a/src/components/controls/TextArea/README.md
+++ b/src/components/controls/TextArea/README.md
@@ -180,6 +180,38 @@ The row count of the `TextArea` is controlled by the `rows`, `minRows` and `maxR
LANDING_BLOCK-->
+## Resizable TextArea
+
+You can get resizable behaviour by providing `resize` style to `controlProps` property.
+
+
+
+
+
+```tsx
+
+```
+
+
+
## Properties
| Name | Description | Type | Default |
diff --git a/src/components/controls/TextInput/TextInput.tsx b/src/components/controls/TextInput/TextInput.tsx
index 343bfed167..6c4e189525 100644
--- a/src/components/controls/TextInput/TextInput.tsx
+++ b/src/components/controls/TextInput/TextInput.tsx
@@ -55,8 +55,8 @@ export type TextInputPin = InputControlPin;
export type TextInputSize = InputControlSize;
export type TextInputView = InputControlView;
-// eslint-disable-next-line complexity
export const TextInput = React.forwardRef(
+ // eslint-disable-next-line complexity
function TextInput(props, ref) {
const {
view = 'normal',