<button type="button" class="sds-btn">
<span aria-hidden="true" class="sds-icon sds-"></span>
</button>
<{{ eltType }}{%- if eltType === "button" %} type="button"{% elseif eltType === "a" %} href="{{ href }}"{% endif %}
class="{{ namespace }}btn{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}"
{% for attrKey, attr in attrs %} {{ attrKey }}="{{ attr }}"{% endfor %}
{% if disabled %} disabled{% endif %}
{% if loading %} aria-label="Chargement en cours" aria-busy="true" {% endif %}>
{% if text %}
{{ text }}
{% else %}
<span aria-hidden="true" class="{{ namespace }}icon {{ namespace }}{{ icon }}"></span>
{% endif %}
{% if action %}
<span class="sr-only">{{ action }}</span>
{% endif %}
</{{ eltType }}>