{% sw_extends '@Storefront/storefront/utilities/alert.html.twig' %}
{% block utilities_alert_icon %}
{% if icon != "false" %}
{% if type == "danger" %}
{% sw_icon 'x-block' %}
{% elseif type == "warning" %}
{% sw_icon 'warning' %}
{% elseif type == "info" %}
{% sw_icon 'info' %}
{% elseif type == "success" %}
{% sw_icon 'check-circle' style {'pack' : 'globus_icons', 'color' : 'transparent'} %}
{% else %}
{% sw_icon 'alert' %}
{% endif %}
{% endif %}
{% endblock %}
{% block utilities_alert_content %}
<div class="alert-content">
{% if list|length > 1 %}
<ul class="alert-list">
{% for entry in list|array_unique %}
<li>{{ entry|sw_sanitize }}</li>
{% endfor %}
</ul>
{% elseif list|length == 1 %}
{% for entry in list %}
{{ entry|sw_sanitize }}
{% endfor %}
{% else %}
{{ content|sw_sanitize }}
{% endif %}
</div>
{% endblock %}