Files
sure/app/views/settings/providers/_group_heading.html.erb
2026-05-09 10:27:33 +02:00

13 lines
500 B
Plaintext

<%# locals: (title:, count: nil, description: nil, anchor: nil) %>
<%= tag.div id: anchor.presence, class: "flex items-baseline justify-between gap-3 mt-2 mb-1 px-1" do %>
<h2 class="text-sm font-medium text-primary flex items-baseline gap-2">
<%= title %>
<% if count %>
<span class="text-subdued font-normal tabular-nums">· <%= count %></span>
<% end %>
</h2>
<% if description.present? %>
<p class="text-xs text-secondary"><%= description %></p>
<% end %>
<% end %>