custom/plugins/zenitPlatformStratus/src/Resources/views/storefront/utilities/icon.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/utilities/icon.html.twig' %}
  2. {% block utilities_icon %}
  3.     {# ... change icons without extending every block #}
  4.     {% set icons = [ 'heart', 'heart-fill', 'avatar', 'bag', 'help', 'stack', 'search', 'x', 'eye-open' ] %}
  5.     {% if pack is not defined and theme_config('zen-icon-set') is not same as ('default') %}
  6.         {% if name in icons %}
  7.             {% set pack = theme_config('zen-icon-set') %}
  8.             {% set namespace = 'zenitPlatformStratus' %}
  9.         {% endif %}
  10.     {% endif %}
  11.     {{ parent() }}
  12. {% endblock %}