14 lines
449 B
Twig
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>
|