mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 22:45:20 +02:00
21 lines
674 B
Text
21 lines
674 B
Text
|
<%# locals: (message:, description:) %>
|
||
|
|
||
|
<div id="cta">
|
||
|
<%= tag.div class: "relative flex gap-3 rounded-lg bg-white p-4 group max-w-80 shadow-border-xs", data: { controller: "element-removal" } do %>
|
||
|
<div class="h-5 w-5 shrink-0 p-px text-white">
|
||
|
<div class="flex h-full items-center justify-center rounded-full bg-success">
|
||
|
<%= lucide_icon "check", class: "w-3 h-3" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="space-y-4">
|
||
|
<div class="space-y-1">
|
||
|
<%= tag.p message, class: "text-primary text-sm font-medium" %>
|
||
|
<%= tag.p description, class: "text-secondary text-sm" %>
|
||
|
</div>
|
||
|
|
||
|
<%= yield %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|