15 lines
461 B
Twig
15 lines
461 B
Twig
{% extends 'knp_menu.html.twig' %}
|
|
|
|
{% block label %}
|
|
{% apply spaceless %}
|
|
{% if item.extras.icon is defined %}
|
|
{{ icon(item.extras.icon, 'w-5 h-5') }}
|
|
{% if item.extras.icon_only is defined and false == item.extras.icon_only %}
|
|
<span class="flex-1">{{ item.label|raw }}</span>
|
|
{% endif %}
|
|
{% else %}
|
|
{{ item.label|raw }}
|
|
{% endif %}
|
|
{% endapply %}
|
|
{% endblock %}
|