This commit is contained in:
proelements
2026-05-04 15:07:06 +03:00
parent 872bc6fb57
commit 741540b767
148 changed files with 11063 additions and 1016 deletions
@@ -0,0 +1,11 @@
{% set classes = settings.classes | merge( [ base_styles.base ] ) | join(' ') | trim %}
{% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %}
{% set interactions_attribute = interactions is not empty ? 'data-interactions=' ~ interactions | json_encode | e('html_attr') : '' %}
<button
{{ id_attribute }}
class="{{ classes }}"
type="submit"
data-interaction-id="{{ interaction_id | default(id) }}"
{{ settings.attributes | raw }}
{{ interactions_attribute }}
>{{ settings.label | e }}</button>