bootstrap_italia-8.x-0.x-dev/components/components-0x/dropdown/dropdown-button.twig
components/components-0x/dropdown/dropdown-button.twig
{#
/**
* @file
* Template for Dropdown component.
* Docs: https://italia.github.io/bootstrap-italia/docs/componenti/dropdown/
* Latest revision: v2.6.1
*
* Available config:
* + id: string
* + button_label: string
* + icon: string
* X icon_size: string
* X post_icon_text: string
* + more_classes: string
* + dropdown_menu: html
* + more_menu_classes: string
*
#}
{% apply spaceless %}
{% include '@bi-bcl/deprecated.html.twig' with {
old: 'bootstrap_italia_components/dropdown/dropdown-menu.twig',
new: 'bi-bcl/dropdown/dropdown.html.twig',
} %}
{# Redirect to new component #}
{% embed '@bi-bcl/dropdown/dropdown.html.twig' with {
label: button_label,
id: id,
icon_before: icon,
button_classes: more_classes,
dropdown_classes: more_menu_classes
} %}
{% block dropdownContent %}
{{ dropdown_menu|raw }}
{% endblock %}
{% endembed %}
{% endapply %}
