Files
pcm-badge-bundle/Resources/views/Badge.html.twig
T
2026-04-29 17:33:03 +01:00

12 lines
308 B
Twig

<div {{ attributes }} class="{{ this.finalClasses }}">
{% if this.icon %}
<twig:ux:icon name="{{ this.icon }}" class="size-4" />
{% endif %}
{% if block('content') is not empty %}
{% block content %}{% endblock %}
{% else %}
{{- this.label -}}
{% endif %}
</div>