{% set id = field('id') %}
{% set class = field('class') %}
{% set text = field('text') %}
{% set link = field('link') %}
{% set type = field('type') %}
{% set outline = field('outline') %}
{% set btnClass = 'qx-btn qx-btn-' ~ type %}
{% set classes = classNames('qx-element qx-element-button-v2', class) %}
{% set animation = "" %}
{% if field('animation') != 'none' %}
{% if field('animation')is not empty %}
{% set animation = "cls:" ~ field('animation') ~ ";" %}
{% endif %}
{# repeat #}
{% if field('animation_repeat') %}
{% set animation = animation ~ "repeat:ture;" %}
{% endif %}
{# delay #}
{% if field('animation_delay').value %}
{% set animation = animation ~ "delay:" ~ field('animation_delay').value %}
{% endif %}
{% endif %}
{% if outline %}
{% set btnClass = 'qx-btn qx-btn-outline-' ~ type %}
{% endif %}
{% if field('full_width') %}
{% set btnClass = btnClass ~ ' qx-btn-block' %}
{% endif %}
{{ field('text') | link(link, btnClass) }}