{#- chirp-ui: Callout component
Inset box for tips, notes, warnings — distinct from alert (no dismiss, more editorial).
Named slot: header_actions.
Usage:
from "chirpui/callout.html" import callout
call callout(variant="info", title="Note")
This is an informational callout with a title.
end
call callout(variant="warning", title="Tip")
{% slot header_actions %}{% end %}
Body content.
end
Variants: info, success, warning, error, neutral
-#}
{% def callout(variant="info", title=none, icon=none, cls="") %}
{% end %}