The textarea component defines a multi-line text input control.
npm install @igloo-ui/textareaThe textarea component defines a multi-line text input control.
To install @igloo-ui/textarea in your project, you will need to run the following command using npm:
``bash`
npm install @igloo-ui/textarea
If you prefer Yarn, use the following command instead:
`bash`
yarn add @igloo-ui/textarea
Then to use the component in your code just import it!
`jsx
import Textarea from '@igloo-ui/textarea';
placeholder="The character count will count down to show how many characters are left. MaxLength is required"
maxLength={1000}
showCharactersIndicator
/>;
``