mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
14 lines
318 B
Text
14 lines
318 B
Text
|
<%= link_to href, **merged_opts do %>
|
||
|
<% if icon && (icon_position != "right") %>
|
||
|
<%= lucide_icon(icon, class: icon_classes) %>
|
||
|
<% end %>
|
||
|
|
||
|
<% unless icon_only? %>
|
||
|
<%= text %>
|
||
|
<% end %>
|
||
|
|
||
|
<% if icon && icon_position == "right" %>
|
||
|
<%= lucide_icon(icon, class: icon_classes) %>
|
||
|
<% end %>
|
||
|
<% end %>
|