@wfp/ui
Version:
WFP UI Kit
28 lines (24 loc) • 731 B
text/mdx
**TextArea** represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.
[](https://next.carbondesignsystem.com/components/text-input)
<!--
```js
import { TextArea } from '@wfp/ui';
```
```js
<TextArea
className="some-class"
id="test2"
defaultValue="Default value (defaultValue)"
labelText="Text Input label"
placeholder="Placeholder text"
disabled={false}
hideLabel={false}
invalid={false}
invalidText="A valid value is required"
helperText="Optional helper text."
onClick={onClick}
onChange={onChange}
/>
```
-->