<button class="
button_text
button_text_large
">
<span class="button_text_inner">
<span class="button_text_label">Button Text</span>
</span>
</button>
{#
{% include '@partial-button' with {
classes: {
base: 'base_class',
modifiers: [],
utility: ''
},
id: null,
attributes: {
'attribute': 'value'
},
title: 'Button Text',
icon: ''
} %}
#}
<button
class="
{{ classes.base }}
{% for modifier in classes.modifiers %}
{{ classes.base ~ '_' ~ modifier }}
{% endfor %}
{{ classes.utility }}
"
{% if id %}id="{{ id }}"{% endif %}
{% for attribute, value in attributes %}
{{ attribute }}="{{ value }}"
{% endfor %}
>
<span class="{{ classes.base }}_inner">
{% if title %}
<span class="{{ classes.base }}_label">{{ title }}</span>
{% endif %}
{% if icon %}
<span class="{{ classes.base }}_icon" aria-hidden="true">
{{ icon(icon) }}
</span>
{% endif %}
</span>
</button>
No notes defined.