<a href="" class="button theme_light ">
    <span class="button_inner">
        <span class="button_label"></span>
    </span>
</a>
{#
	{% include "@partial-button" with {
		url: "#",
		title: "Button Text",
		class: "",
		js: false,
		icon: "",
		aria: ""
	} %}
#}

<a href="{{ url }}" class="button theme_{{ theme|default('light') }} {% if js %}js-{{ class|replace({'_': '-'}) }}-button{% endif %}" {% if aria %} aria-label="{{ aria }}"{% endif %}>
	<span class="button_inner">
		<span class="button_label">{{ title }}</span>
		{% if icon %}
		<span class="button_icon" aria-hidden="true"><span class="button_icon_inner">
			{{ icon(icon) }}
		</span>
		{% endif %}
	</span>
</a>

No notes defined.