custom/static-plugins/NdVoorwindenTheme/src/Resources/views/storefront/element/cms-element-button.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/element/cms-element-button.html.twig' %}
  2. {% block sw_cms_element_button_html %}
  3.     <a class="btn {{ buttonType }} {{ buttonAlignment }}"
  4.        title="{{ buttonText }}"
  5.        href="{{ buttonUrl }}" {% if button.tab.value == true %}target="_blank"{% endif %}>
  6.         {{ buttonText }}
  7.         {% if block.type === "image-text-button" or block.type === "product-slider-title" %}
  8.             <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5">
  9.                 <path stroke-linecap="round" stroke-linejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
  10.             </svg>
  11.             {% sw_icon 'cart' style{'pack': 'chevron-right', 'class': 'w-6 h-6'} %}
  12.         {% endif %}
  13.     </a>
  14. {% endblock %}