Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
<div class="Polaris-LegacyStack Polaris-LegacyStack--spacingLoose">
<div class="Polaris-LegacyStack__Item"> <span class="Polaris-Badge">
<span class="Polaris-Text--root Polaris-Text--bodySm Polaris-Text--regular">
Paid
</span></span>
</div>
<div class="Polaris-LegacyStack__Item"> <span class="Polaris-Badge">
<span class="Polaris-Text--root Polaris-Text--bodySm Polaris-Text--regular">
Fulfilled
</span></span>
</div>
</div>
1
2
3
4
5
6
7
8
<%= polaris_stack(spacing: :loose) do |stack| %>
<% stack.with_item do %>
<%= polaris_badge { "Paid" } %>
<% end %>
<% stack.with_item do %>
<%= polaris_badge { "Fulfilled" } %>
<% end %>
<% end %>