mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 20:15:22 +02:00
17 lines
633 B
Text
17 lines
633 B
Text
|
<%# locals: (message:) %>
|
||
|
|
||
|
<%= tag.div class: "flex gap-3 rounded-lg bg-white p-4 group max-w-80 shadow-border-lg",
|
||
|
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-destructive">
|
||
|
<%= lucide_icon "x", class: "w-3 h-3" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<%= tag.p message, class: "text-primary text-sm font-medium" %>
|
||
|
|
||
|
<div class="ml-auto">
|
||
|
<%= lucide_icon "x", data: { action: "click->element-removal#remove" }, class: "w-5 h-5 text-secondary hover:text-gray-600 cursor-pointer" %>
|
||
|
</div>
|
||
|
<% end %>
|