mirror of
https://github.com/we-promise/sure.git
synced 2026-05-24 13:04:56 +00:00
13 lines
500 B
Plaintext
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 %>
|