{% macro button(label, href=None, kind='primary', size='md', icon=None, attrs='', disabled=False, busy=False, title='', button_type='button') -%} {% set classes = 'hil-btn hil-btn-' ~ kind ~ ' hil-btn-' ~ size %} {% if icon %}{% set classes = classes ~ ' hil-btn-has-icon' %}{% endif %} {% if busy %}{% set classes = classes ~ ' is-loading' %}{% endif %} {% if href %} {% if icon %}{% endif %} {{ label }} {% if busy %}{% endif %} {% else %} {% endif %} {%- endmacro %} {% macro icon_button(icon, label, href=None, kind='ghost', size='md', attrs='') -%} {{ button(label=label, href=href, kind=kind, size=size, icon=icon, attrs=attrs, title=label) }} {%- endmacro %} {% macro action_group(items, class_name='') -%}