Textarea
Allow users to enter text on multiple lines. This component uses the base structure of the Input component.
- React
- CSS
<Textarea id="textarea" label="Textarea" />
<div class="input textarea">
<label for="textarea" class="input_label">Textarea</label>
<textarea id="textarea" rows="4" class="input_control"></textarea>
</div>
Usage
To follow user-centred design and GDPR best practices, we should only ask users for information we need. In that respect, all form fields of the Pallote component library are by default required.
For the CSS library, you do not need to add the required
property to the form fields, it is added automatically with the javascript import.
Props
isFocused
Focus on a input on page load.
- React
- CSS
<Textarea id="focused" label="IsFocused" isFocused />
<div class="input input-focused textarea">
<label for="focused" class="input_label">Focused</label>
<textarea id="focused" rows="4" class="input_control"></textarea>
</div>
Error
Notify users that the field has an error.
This is the error message
- React
- CSS
<Textarea id="error" label="Error" error="This is the error message" />
<div class="input input-error textarea">
<label for="error" class="input_label">Error</label>
<p class="input_error">This is the error message</p>
<textarea id="error" rows="4" class="input_control"></textarea>
</div>
Disabled
Add this class to signal users the field is disabled.
- React
- CSS
<Textarea id="disabled" label="Disabled" disabled />
<div class="input input-disabled textarea">
<label for="disabled" class="input_label">Disabled</label>
<textarea id="disabled" rows="4" class="input_control"></textarea>
</div>
Optional
- React
- CSS
<Textarea id="optional" label="Optional" optional />
<div class="input input-optional textarea">
<label for="optional" class="input_label">Optional</label>
<textarea id="optional" rows="4" class="input_control"></textarea>
</div>
Hint
This is a hint to give more details
- React
- CSS
<Textarea id="hint" label="Hint" hint="This is a hint to give more details" />
<div class="input textarea">
<label for="hint" class="input_label">Hint</label>
<p class="input_hint">This is a hint to give more details</p>
<textarea id="hint" rows="4" class="input_control"></textarea>
</div>