<a href="#" class="button button_link theme_">
    <span class="button_inner">
        <span class="button_icon">

            <svg class="icon icon_menu">
                <use href="/images/icons.svg#menu" />
            </svg>

        </span>

        <span class="button_text">
            Button Text
        </span>
    </span>
</a>
{#
	{% include '@partial-button-link' with {
		class: '',
		title: 'Button Text',
		icon: 'menu',
		theme:''
	} %}
#}

<a href="#" class="button button_link theme_{{ theme }}">
	<span class="button_inner">
		{% if icon %}
			<span class="button_icon">
				{{ icon(icon) }}
			</span>
		{% endif %}

		{% if title %}
			<span class="button_text">
				{{ title }}
			</span>
		{% endif %}
	</span>
</a>

No notes defined.