<FormGroup>
<TextInput
helperText="Optional helper text."
id="test2"
invalidText="A valid value is required"
labelText="Text Input label"
placeholder="Placeholder text"
/>
</FormGroup>
<FormGroup>
<TextInput.PasswordInput
helperText="Optional helper text."
hidePasswordLabel="Hide password"
id="test2"
invalidText="A valid value is required"
labelText="Text Input label"
placeholder="Placeholder text"
showPasswordLabel="Show password"
/>
</FormGroup>
<FormGroup>
<TextArea
cols={50}
helperText="Optional helper text."
id="test2"
invalidText="A valid value is required"
labelText="Text Area label"
placeholder="Placeholder text."
rows={4}
/>
</FormGroup>