{% load mvp %}
{% if condition %}
{% spaceless %}
{% with element=href|yesno:"a,button" %}
{# djlint:off #}
<{{ element }} class="btn{% if variant %} btn-{{ variant }}{% endif %}{% if outline %} btn-outline{% endif %} {% variation size "btn" "sm,md,lg" %}{% if ghost %} btn-ghost{% endif %}{% if full %} btn-block{% endif %} inline-flex items-center justify-{{ align }}{% if reverse %} flex-row-reverse{% endif %} gap-2 {{ class }}" {{ attrs }}>
{% if icon %}{% endif %}
{% if text %}{{ text }}{% endif %}
{{ slot }}
{{ element }}>
{# djlint:on #}
{% endwith %}
{% endspaceless %}
{% endif %}