The message
component provides small inline containers
to hold help and error messages.
Used to apply additional information to form controls.
These messages must be programatically associated with their relevant form control.
Used to apply help information associaed with a form controls.
<span class="message--help">Help message</span>
Used to apply help information associaed with a radio-group only.
<p class="message--help--radio-group">Help message</p>
Used to apply an error message associated with a form control.
<span class="message--error">
<span class="fas fa-times">
<span class="u-hidden">Error</span>
</span>
Error message
</span>
Used to apply an error message associaed with a radio-group only.
<p class="message--error--radio-group">
<span class="fas fa-times">
<span class="u-hidden">Error</span>
</span>
Error message
</p>
Used to notify users of required fields.
<span class="message--required">(Required)</span>