working on delete
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s

This commit is contained in:
2026-03-18 09:21:34 -06:00
parent 9a9522ecb6
commit b2f53942a2
4 changed files with 113 additions and 12 deletions

View File

@@ -32,4 +32,25 @@ defmodule ElixirAiWeb.FormComponents do
</div>
"""
end
@doc """
Renders a centered overlay modal. Pass content via the `:inner_block` slot.
## Examples
<.modal>
<p>Are you sure?</p>
</.modal>
"""
slot :inner_block, required: true
def modal(assigns) do
~H"""
<div class="fixed inset-0 z-50 flex items-center justify-center bg-black/60">
<div class="w-full max-w-sm rounded-lg border border-cyan-900/40 bg-cyan-950 p-6 shadow-xl">
{render_slot(@inner_block)}
</div>
</div>
"""
end
end