custom/plugins/BjerregaardTheme/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.     {% set styles = [ size, color, rotation, flip, class ] %}
  4.     {% if pack == 'bjerregaard' %}
  5.         {% apply spaceless %}
  6.             <span class="icon icon-bjerregaard {{ name }}{% for entry in styles %}{% if entry != "" %} icon-{{ entry }}{% endif %}{% endfor %}">
  7.                 {% if name == "ic-cart" %}<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path d="M4 7h16M4 7v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7M4 7l2-4h12l2 4m-5 4a3 3 0 1 1-6 0" stroke="currentColor" fill="transparent" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>{% endif %}
  8.             </span>
  9.         {% endapply %}
  10.     {% else %}
  11.         {{ parent() }}
  12.     {% endif %}
  13. {% endblock %}