Alert boxes
Alert Info Box
info
Info messages communicate important information.
{% include '@leviy-components/alert_box/alert_box.html.twig' with {
'style': 'info',
'icon': 'info',
'text': 'Info messages communicate important information.'
} %}
Alert Warning Box
warning
Warning messages are used to bring possible future problems to the attention, so the user can make a deliberate choice.
{% 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
check_circle_outline
Success messages are used to communicate actions that have been successful.
{% 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
error
Error messages are used to bring urgent attention to critical tasks.
{% 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.'
} %}