Alert boxes


Alert Info Box

{% include '@leviy-components/alert_box/alert_box.html.twig' with {
    'style': 'info',
    'icon': 'info',
    'text': 'Info messages communicate important information.'
} %}

Alert Warning Box

{% include '@leviy-components/alert_box/alert_box.html.twig' with {
    'style': 'warning',
    'icon': 'warning',
    'text': 'Warning messages are used to bring possible future problems to the attention, so the user can make a deliberate choice.'
} %}

Alert Success Box

{% include '@leviy-components/alert_box/alert_box.html.twig' with {
    'style': 'success',
    'icon': 'check_circle_outline',
    'text': 'Success messages are used to communicate actions that have been successful.'
} %}

Alert Error Box

{% include '@leviy-components/alert_box/alert_box.html.twig' with {
    'style': 'error',
    'icon': 'error',
    'text': 'Error messages are used to bring urgent attention to critical tasks.'
} %}