2024-08-09 11:22:57 -04:00
|
|
|
<%# locals: (title:, content:, subtitle: nil) %>
|
|
|
|
|
|
|
|
<%= modal do %>
|
|
|
|
<article class="mx-auto w-full p-4 space-y-4 min-w-[450px] max-w-xl">
|
|
|
|
<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>
|
|
|
|
<%= lucide_icon("x", class: "cursor-pointer w-5 h-5 text-gray-500", data: { action: "click->modal#close" }) %>
|
2024-08-09 11:22:57 -04:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<% if subtitle.present? %>
|
|
|
|
<%= tag.p subtitle, class: "text-gray-500 font-light" %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= content %>
|
|
|
|
</article>
|
|
|
|
<% end %>
|