<button type="button" class="sds-btn">
<span 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 text %}
{{ text }}
{% else %}
<span class="{{ namespace }}icon {{ namespace }}{{ icon }}"></span>
{% endif %}
{% if action %}
<div class="sr-only">{{ action }}</div>
{% endif %}
</{{ eltType }}>