WUI logo

Textarea

The Textarea component is a multi-line input field that allows users to enter and edit larger blocks of text. It is commonly used in forms and applications where more extensive text input is required, such as comments, descriptions, or messages. This component provides features like resizing, placeholder text, and validation, enhancing the user experience by accommodating detailed text entry.

import * as React from 'react'
import { Textarea } from '@welcome-ui/textarea'
const Example = () => {
return (
<Textarea
name="textarea"
placeholder="Lorem ipsum dolor sit amet, consectetur adipiscing elit."
/>
)
}
export default Example

Installation

1

Run the following command:

yarn add @welcome-ui/textarea
2

Import component:

import { Textarea } from '@welcome-ui/textarea'

With Field

Example with Field component