{% if theIcon | length or theLoadingIcon | length %}
    {% if theIcon | length %}
        {{ svg(svgPath ~ theIcon) | attr({class: "w-auto h-4 max-w-[1.25rem] fill-current pointer-events-none mr-4" ~ (theLoadingIcon ? ' group-disabled:hidden' )}) }}
    {% endif %}
    {% if theLoadingIcon | length %}
        {{ svg(svgPath ~ 'animated/loading-icon-animated.svg') | attr({class: "hidden group-disabled:block w-4 h-4 mr-4 fill-current pointer-events-none"}) }}
    {% endif %}
{% endif %}