{# Macro empty_state Uso: {% from "dg/components/empty_state.html" import empty_state %} {{ empty_state( icon_name="package", title="Sin apps todavĂ­a", description="Crea un proyecto o ejecuta dg up.", cta_label="Crear proyecto", cta_href="/projects/new" ) }} #} {% from "dg/components/icon.html" import icon %} {% macro empty_state(title, description="", icon_name="package", cta_label="", cta_href="") %}
{{ icon(icon_name, class="w-7 h-7") }}

{{ title }}

{%- if description %}

{{ description }}

{%- endif %} {%- if cta_label and cta_href %} {{ cta_label }} {%- endif %}
{%- endmacro %}