# EuiHelperTextComponent

**Type:** component



A helper text component that provides supplementary information for form fields or UI elements.
Displays descriptive text to guide users in completing forms or understanding interface elements.

### Basic helper text
```html
<eui-label>Password</eui-label>
<eui-input-text type="password"></eui-input-text>
<eui-helper-text>Must be at least 8 characters</eui-helper-text>
```

### Accessibility
- Should be associated with form controls using aria-describedby
- Provides context without being intrusive
- Text is readable by screen readers

### Notes
- Use for hints, format requirements, or additional context
- Keep text concise and actionable
- Combine with eui-feedback-message for validation errors


**Selector:** `eui-helper-text`
