custom/static-plugins/SamsonCustomer/src/Resources/views/storefront/utilities/alert.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/utilities/alert.html.twig' %}
  2. {% block utilities_alert_icon %}
  3.     {% if icon != "false" %}
  4.         {% if type == "danger" %}
  5.             {% sw_icon 'times' %}
  6.         {% elseif type == "warning" %}
  7.             {% sw_icon 'exclamation-triangle' %}
  8.         {% elseif type == "info" %}
  9.             {% sw_icon 'info' %}
  10.         {% elseif type == "success" %}
  11.             {% sw_icon 'check' %}
  12.     {% else %}
  13.             {% sw_icon 'alert' %}
  14.         {% endif %}
  15.     {% endif %}
  16. {% endblock %}