<%= t(".title") %>

<%= link_to new_merchant_path, class: "btn btn--primary flex items-center gap-1 justify-center", data: { turbo_frame: :modal } do %> <%= lucide_icon "plus", class: "w-5 h-5" %>

<%= t(".new") %>

<% end %>
<% if @merchants.any? %>

<%= t(".title") %>

·

<%= @merchants.count %>

<%= render partial: @merchants, spacer_template: "merchants/ruler" %>
<% else %>

<%= t(".empty") %>

<%= link_to new_merchant_path, class: "w-fit flex text-white text-sm font-medium items-center gap-1 bg-gray-900 rounded-lg p-2 pr-3", data: { turbo_frame: "modal" } do %> <%= lucide_icon("plus", class: "w-5 h-5") %> <%= t(".new") %> <% end %>
<% end %>