{% if condition %}
{% spaceless %}
{% with element=href|yesno:"a,button" %}
{# djlint:off #}
<{{ element }} class="btn {% if variant %} btn-{{variant}}{% endif %} inline-flex items-center justify-{{ align }}{% if reverse %} flex-row-reverse{% endif %} gap-{{ gap }}{% if small %} btn-sm{% elif large %} btn-lg{% endif %}{% if ghost %} btn-ghost{% endif %} {{ class }}" {{ attrs }}>
{% if icon %}{% endif %}
{% if text %}{{ text }}{% endif %}
{{ slot }}
{{ element }}>
{# djlint:on #}
{% endwith %}
{% endspaceless %}
{% endif %}