{# Empty state component #} {% macro empty_state(icon="📊", title="No data", message="", action_label="", action_href="") %}
{{ icon }}
{{ title }}
{% if message %}
{{ message }}
{% endif %} {% if action_label and action_href %} {{ action_label }} {% endif %}
{% endmacro %}