Template
<div class="Buttons Tracking--buttons{% if not embedded %} u-container{% endif %}{% if class %} {{ class }}{% endif %}">
{% for item in buttons %}
{% if item.type == "button" %}
{% include "@elements/button/button.html.twig" with {
class: item.class ? "Buttons-button " ~ item.class : "Buttons-button",
label: item.label,
mutation: item.mutation,
target: item.target,
tenant: tenant,
url: item.url
} only %}
{% elseif item.type == "link" %}
{% include "@elements/link/link.html.twig" with {
class: item.class ? "Buttons-button " ~ item.class : "Buttons-button",
icon: "minus",
icon_left: true,
label: item.label,
target: item.target,
tenant: tenant,
url: item.url
} only %}
{% endif %}
{% endfor %}
</div>