templates/components/link.html.twig line 1

Open in your IDE?
  1. {% if (text is not empty) %}
  2. <a class="link slide-to-right-icon d-inline-flex align-items-center {{ textRight is defined and textRight ? 'justify-content-end' : '' }} {{ borderBottom is defined and borderBottom ? 'border-b-black-1' : '' }} py-2" href="{{ link|default('#') }}" target="_blank">
  3.     <span class="me-2 fw-bold">{{ text|default('Mehr erfahren') }}</span>
  4.     <i class="icon target-icon fa-solid {{ icon|default('fa-arrow-right') }}"></i>
  5. </a>
  6. {% endif %}