14 lines
509 B
Twig
14 lines
509 B
Twig
<div {{ attributes }} class="{{ this.finalClasses }}"{% if this.label %} aria-label="{{ this.label }}"{% endif %}>
|
|
<span class="inline-flex gap-1 items-center justify-center">
|
|
{% if this.icon %}
|
|
<twig:ux:icon name="{{ this.icon }}" class="size-[1em] shrink-0" aria-hidden="true" />
|
|
{% endif %}
|
|
|
|
{% if block('content') is not empty %}
|
|
{% block content %}{% endblock %}
|
|
{% else %}
|
|
{{- this.label -}}
|
|
{% endif %}
|
|
</span>
|
|
</div>
|