Use the Notice unit when embedding a warning or error inside another component (e.g. notice that a CTA will not be shown while its target URL isn’t accessible)
<div class='c-notice c-notice--error'>
Patients often say that they feel burned out and exhausted. Other symptoms can be anxiety, sleep disturbances, irritation. Burnout rates among social entrepreneurs are a true issue. Our survey among SIA alumni shows that more than 40% were exposed to some level of burnout. 5% might have experienced severe burnout.
</div>
{% if level %}
{% set display = { 'modifiers': [ level ] } %}
{% endif %}
<div class='{{ get_component_class( 'notice', display ) }}'>
{{ content|raw }}
</div>
{
"content": "Patients often say that they feel burned out and exhausted. Other symptoms can be anxiety, sleep disturbances, irritation. Burnout rates among social entrepreneurs are a true issue. Our survey among SIA alumni shows that more than 40% were exposed to some level of burnout. 5% might have experienced severe burnout.",
"level": "error"
}