# Input Validation

> **WARNING:** 90% of validation for inputs will be handled out-of-the-box by the&#x20;
> input component's validation. Check
> that you cannot use the built-in validation before using this component.

An InputValidation component is used to display validation messages for an
input.

## Design & usage guidelines

InputValidation allows you to show the validation messages in cases where an
[input's built-in validation](../InputText/InputText.md) is not available, such as
in `inline` usage.

For more information about `validations` using any of the Input components, see
the [InputText](../InputText/InputText.md) documentation.


## Props

### Web

| Prop | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `message` | `string` | Yes | — | Validation message to be displayed |
| `visible` | `boolean` | No | `true` |  |
