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