custom/static-plugins/CytexTheme/src/Resources/views/storefront/component/wishlist/icon.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@CoeWishlistSw6/storefront/component/wishlist/icon.html.twig' %}
  2. {% block component_wishlist_icon %}
  3.     <span class="{% if not header %} cytex-coe-wishlist-icon {% endif %}">
  4.         <span class="icon-outline-black d-flex flex-column">
  5.             {% if header %}
  6.                 {% sw_icon 'star-outline-thick' style {
  7.                     'namespace': 'CytexTheme',
  8.                     'pack': 'cytex',
  9.                 } %}
  10.                 <span class="text-uppercase cytex-font-size-9 d-none d-lg-inline">{{ "cytex-theme.header.favorites"|trans }}</span>
  11.             {% else %}
  12.                 {% sw_icon 'star-outline-thick' style {
  13.                     'namespace': 'CytexTheme',
  14.                     'pack': 'cytex',
  15.                     'size': 'xs'
  16.                 } %}
  17.             {% endif %}
  18.         </span>
  19.     </span>
  20.     {% if not header %}
  21.         <div class="cytex-product-wishlist-icon-background"></div>
  22.     {% endif %}
  23. {% endblock %}