{% macro dropdown(items, options) %} {% import '@Tabler/includes/utils.html.twig' as macros %} {% from '@Tabler/components/badge.html.twig' import badge as badgeMacro %} {# Options #} {# TODO : Remove when 3.0 #} {% if options.menuArrowEnd is defined %} {% deprecated "Using `menuArrowEnd` option is deprecated, use `menuAlignmentEnd` instead." %} {% set _menuAlignmentEnd = options.menuArrowEnd is same as true %} {% else %} {% set _menuAlignmentEnd = (options.menuAlignmentEnd ?? false) is same as true %} {% endif %} {% set _menuArrow = options.menuArrow ?? false %} {% set _extraClass = options.extraClass ?? '' %} {% endmacro %}