ui/twig/common/buttons/split.html.twig line 1

Open in your IDE?
  1. {% set htmlId = _args.htmlId|default(null) %}
  2. {% set htmlClass = _args.htmlClass|default(null) %}
  3. {% set primary = _args.primary %}
  4. {% set secondary = _args.secondary %}
  5. <div{% if htmlId is not null %} id="{{ htmlId }}"{% endif %} class="btn-group{% if htmlClass is not null %} {{ htmlClass }}{% endif %}">
  6.     {% include '@ui/common/buttons/default.html.twig' with primary %}
  7.     {% include '@ui/common/buttons/default.html.twig' with secondary %}
  8. </div>