bootstrap_italia-8.x-0.x-dev/patterns/button2/pattern-button2.html.twig
patterns/button2/pattern-button2.html.twig
{% apply spaceless %}
{% if variant == 'link' %}
{% include '@bi-bcl/button/button.html.twig' with {
label: button_text|render|striptags|trim,
variant: color,
tag: 'a',
url: button_href|render|striptags|trim
} %}
{% elseif variant == 'input' %}
{% include '@bi-bcl/button/button.html.twig' with {
label: button_text|render|striptags|trim,
variant: color,
tag: 'input'
} %}
{% else %}
{% include '@bi-bcl/button/button.html.twig' with {
label: button_text|render|striptags|trim,
variant: color,
tag: 'button'
} %}
{% endif %}
{% endapply %}
