blob: 85affb9cc3049b18fc15ab4b845f41979f2b9d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# TextareaAutosize
A light replacement for built-in `<textarea />` component which automatically adjusts its height to match the content.
## Props
|Name|Type|Default|Description|
|----|----|-------|-----------|
| **onResize** | <code>Function</code> | | *optional*. Called whenever the textarea resizes |
| **rows** | <code>Number</code> | | *optional*. Minimum number of visible rows |
| **maxRows** | <code>Number</code> | | *optional*. Maximum number of visible rows |
| **innerRef** | <code>Function</code> | | *optional*. Called with the ref to the DOM node |
|