bootstrap_italia-8.x-0.x-dev/components/components-2/dropdown/dropbutton-wrapper.html.twig
components/components-2/dropdown/dropbutton-wrapper.html.twig
{#
/**
* @file
* Default theme implementation for a dropbutton wrapper.
*
* Available variables:
* - children: Contains the child elements of the dropbutton menu.
*
* @see template_preprocess()
*
* @ingroup themeable
*/
#}
{% apply spaceless %}
{% if children %}
{% embed '@bi-bcl/dropdown/dropdown.html.twig' with {
label: '',
size: 'lg',
icon_before: 'it-more-items',
hide_block_after: true,
assistive_text: 'Open for more options'|t,
button_classes: ['m-1'],
} %}
{% block dropdownContent %}
{{ children }}
{% endblock %}
{% endembed %}
{% endif %}
{% endapply %}
