custom/static-plugins/NdVoorwindenTheme/src/Resources/views/storefront/component/product/card/wishlist.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/wishlist.html.twig' %}
  2. {% block component_product_wishlist_icon %}
  3.     {% sw_icon 'heart-solid' style {'pack': 'hero', 'class': 'wishlist icon-wishlist-added', 'size': ' w-5' } %}
  4.     {% sw_icon 'heart-outline' style {'pack': 'hero', 'class': 'wishlist icon-wishlist-not-added', 'size': ' w-5' } %}
  5.     {% if showText %}
  6.         <span class="product-wishlist-btn-content text-wishlist-not-added product-wishlist-btn-content-{{ size }}">
  7.             {{ "listing.addToWishlist"|trans|sw_sanitize }}
  8.         </span>
  9.         <span class="product-wishlist-btn-content text-wishlist-remove product-wishlist-btn-content-{{ size }}">
  10.             {{ "listing.removeFromWishlist"|trans|sw_sanitize }}
  11.         </span>
  12.     {% endif %}
  13. {% endblock %}