<svg class=" shrink-0" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path fill-rule="evenodd" clip-rule="evenodd" d="" fill="currentColor" />
</svg>
<svg class="{{ iconClass }} shrink-0"
        {% if width != 'auto' %}
            width="{{ width|default(size|default(24)) }}"
        {% endif %}
        {% if height != 'auto' %}
            height="{{ height|default(size|default(24)) }}"
        {% endif %}
     viewBox="{{ viewBox|default('0 0 24 24') }}" fill="none" xmlns="http://www.w3.org/2000/svg">
    {% block content %}
        {% if paths is defined and paths %}
            {% for path in paths %}
                <path
                        fill-rule="evenodd"
                        clip-rule="evenodd"
                        d="{{ path.path }}"
                        fill="{{ path.color is defined ? path.color : 'currentColor' }}"
                />
            {% endfor %}
        {% else %}
            <path fill-rule="evenodd" clip-rule="evenodd" d="{{ path }}" fill="currentColor"/>
        {% endif %}
    {% endblock %}
</svg>
/* No context defined. */

No notes defined.