{% sw_extends '@Storefront/storefront/utilities/alert.html.twig' %}
{% block utilities_alert_icon %}
{% if icon != "false" %}
{% if type == "danger" %}
{% sw_icon 'blocked' %}
{% elseif type == "warning" %}
{% sw_icon 'warning' %}
{% elseif type == "info" %}
{% sw_icon 'info' %}
{% elseif type == "success" %}
{% if icon == "sale" %}
{% sw_icon 'package-gift' %}
{% else %}
{% sw_icon 'checkmark-circle' %}
{% endif %}
{% else %}
{% sw_icon 'alert' %}
{% endif %}
{% endif %}
{% endblock %}