Files
pcm-badge-bundle/Resources/views/Badge.html.twig
T
2026-04-30 12:16:58 +01:00

14 lines
449 B
Twig

<div {{ attributes }} class="{{ this.finalClasses }}">
<span class="inline-flex items-center justify-center gap-[0.4em] leading-none">
{% if this.icon %}
<twig:ux:icon name="{{ this.icon }}" class="size-[1em] shrink-0" />
{% endif %}
{% if block('content') is not empty %}
{% block content %}{% endblock %}
{% else %}
{{- this.label -}}
{% endif %}
</span>
</div>