src/JanusHercules/Shared/Presentation/Resources/templates/common/button_twig_component.html.twig line 1

Open in your IDE?
  1. {% if type is same as('a') %}
  2. <a {{ attributes }} href="{{ this.href }}" class="{{ this.style }}"
  3. target="{% if isNewTab %}'_blank'{% else %}{% endif %}">
  4. <span class="tw-mr-1" data-controller="truncate" data-max-length="100" data-truncate-target="text">
  5. {{ text }}
  6. </span>
  7. {% block content_icon_link %}{% endblock %}
  8. </a>
  9. {% else %}
  10. <button
  11. class="{{ this.style }}"
  12. {{ attributes }}
  13. >
  14. <span class="tw-mr-1" data-controller="truncate" data-truncate-text data-max-length="100" data-truncate-target="text">
  15. {{ text }}
  16. </span>
  17. {% block content_icon %}{% endblock %}
  18. </button>
  19. {% endif %}