{# Empty State Component Usage: {% include 'components/_empty_state.html.twig' with { icon: 'bi-receipt', title: 'No invoices found', text: 'Get started by creating your first invoice.', action_url: path('admin_invoice_new'), action_label: 'Create Invoice', action_icon: 'bi-plus-circle' } %} #}

{{ title|default('Nothing here yet') }}

{% if text is defined and text %}

{{ text }}

{% endif %} {% if action_url is defined and action_url %} {% if action_icon is defined %}{% endif %} {{ action_label|default('Get Started') }} {% endif %}