2024-10-18 14:37:42 -04:00
|
|
|
<%# locals: (text:, icon:, disabled: false) %>
|
|
|
|
|
|
|
|
<% if disabled %>
|
|
|
|
<span class="flex items-center w-full gap-4 p-2 px-2 text-center border border-transparent rounded-lg cursor-not-allowed focus:outline-none focus:bg-gray-50 focus:border focus:border-gray-200 text-gray-400">
|
2024-02-12 17:20:50 -05:00
|
|
|
<span class="flex w-8 h-8 shrink-0 grow-0 items-center justify-center rounded-lg bg-alpha-black-50 shadow-[inset_0_0_0_1px_rgba(0,0,0,0.02)]">
|
2024-02-08 10:46:05 -06:00
|
|
|
<%= lucide_icon(icon, class: "text-gray-500 w-5 h-5") %>
|
|
|
|
</span>
|
|
|
|
<%= text %>
|
|
|
|
</span>
|
|
|
|
<% else %>
|
2024-10-18 14:37:42 -04:00
|
|
|
<%= link_to new_account_path(institution_id: params[:institution_id]), class: "flex items-center gap-4 w-full text-center focus:outline-none focus:bg-gray-50 border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-gray-50 rounded-lg p-2" do %>
|
2024-02-12 17:20:50 -05:00
|
|
|
<span class="flex w-8 h-8 shrink-0 grow-0 items-center justify-center rounded-lg bg-alpha-black-50 shadow-[inset_0_0_0_1px_rgba(0,0,0,0.02)]">
|
2024-02-08 10:46:05 -06:00
|
|
|
<%= lucide_icon(icon, class: "text-gray-500 w-5 h-5") %>
|
|
|
|
</span>
|
|
|
|
<%= text %>
|
|
|
|
<% end %>
|
2024-04-09 16:08:58 +04:00
|
|
|
<% end %>
|