{#def title="", type="info", icon="", open=True #}
{% set icons = {
"note": "sticky_note",
"info": "info",
"tip": "check_circle",
"alert": "release_alert",
"warning": "warning",
"danger": "release_alert",
"error": "release_alert",
"internal": "rocket_launch",
"todo": "checklist",
} %}
{% if icon != False %}
{% set icon = icon or icons.get(type) %}
{% endif %}
{% do attrs.set(class="type-" + type or "none") %}
{% if title -%}
{% if icon -%}
{{ icon }}
{% endif -%}
{{ title }}
keyboard_arrow_down
{{content}}
{%- else -%}
{%- endif %}