%# locals: (text:, icon:, disabled: false) %>
<% if disabled %>
<%= lucide_icon(icon, class: "text-gray-500 w-5 h-5") %>
<%= text %>
<% else %>
<%= 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 %>
<%= lucide_icon(icon, class: "text-gray-500 w-5 h-5") %>
<%= text %>
<% end %>
<% end %>