2024-08-09 11:22:57 -04:00
|
|
|
<%# locals: (title:, content:, subtitle: nil) %>
|
|
|
|
|
|
|
|
<%= modal do %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<article class="mx-auto w-full p-4 space-y-4 md:min-w-[450px]">
|
2024-08-09 11:22:57 -04:00
|
|
|
<div class="space-y-2">
|
2024-11-04 20:27:31 -05:00
|
|
|
<header class="flex justify-between items-center">
|
|
|
|
<h2 class="font-medium"><%= title %></h2>
|
2025-04-18 18:53:10 +05:30
|
|
|
<%= lucide_icon("x", class: "cursor-pointer w-6 h-6 md:w-5 md:w-5 text-secondary", data: { action: "mousedown->modal#close" }) %>
|
2024-08-09 11:22:57 -04:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<% if subtitle.present? %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= tag.p subtitle, class: "text-secondary font-light" %>
|
2024-08-09 11:22:57 -04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= content %>
|
|
|
|
</article>
|
|
|
|
<% end %>
|