mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
13 lines
324 B
Text
13 lines
324 B
Text
|
<% if variant == :divider %>
|
||
|
<hr class="border-tertiary my-1">
|
||
|
<% else %>
|
||
|
<div class="px-1">
|
||
|
<%= wrapper do %>
|
||
|
<% if icon %>
|
||
|
<%= lucide_icon(icon, class: destructive? ? "text-destructive" : "fg-gray") %>
|
||
|
<% end %>
|
||
|
<%= tag.span(text, class: text_classes) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
<% end %>
|