Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<div class="Polaris-ActionList">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Box">
<ul style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-block-end-xs: var(--p-space-2);--pc-box-padding-block-start-xs: var(--p-space-2);--pc-box-padding-inline-end-xs: var(--p-space-2);--pc-box-padding-inline-start-xs: var(--p-space-2)" class="Polaris-Box Polaris-Box--listReset">
<li>
<button type="button" class="Polaris-ActionList__Item">
<div style="--pc-horizontal-stack-align: ;--pc-horizontal-stack-block-align: center;--pc-horizontal-stack-wrap: wrap;--pc-horizontal-stack-gap-xs: var(--p-space-4)" class="Polaris-HorizontalStack">
<span class="Polaris-ActionList__Prefix">
<span class="Polaris-Thumbnail Polaris-Thumbnail--sizeSmall">
<img src="https://burst.shopifycdn.com/photos/black-leather-choker-necklace_373x@2x.jpg" alt="">
</span>
</span>
<span class="Polaris-ActionList__Text">
Go here
</span>
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Box">
<span class="Polaris-ActionList__Suffix">
<span class="Polaris-Icon">
<svg viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path d="M8 16a.999.999 0 0 1-.707-1.707l4.293-4.293-4.293-4.293a.999.999 0 1 1 1.414-1.414l5 5a.999.999 0 0 1 0 1.414l-5 5a.997.997 0 0 1-.707.293z"></path></svg>
</span>
</span>
</div>
</div>
</button></li>
<li>
<button type="button" class="Polaris-ActionList__Item">
<div style="--pc-horizontal-stack-align: ;--pc-horizontal-stack-block-align: center;--pc-horizontal-stack-wrap: wrap;--pc-horizontal-stack-gap-xs: var(--p-space-4)" class="Polaris-HorizontalStack">
<span class="Polaris-ActionList__Prefix">
<span role="img" aria-label="Bob" class="Polaris-Avatar Polaris-Avatar--sizeSmall Polaris-Avatar--shapeRound">
<span class="Polaris-Avatar__Initials">
<svg class="Polaris-Avatar__Svg" viewBox="0 0 40 40">
<path fill="currentColor" d="M8.28 27.5A14.95 14.95 0 0120 21.8c4.76 0 8.97 2.24 11.72 5.7a14.02 14.02 0 01-8.25 5.91 14.82 14.82 0 01-6.94 0 14.02 14.02 0 01-8.25-5.9zM13.99 12.78a6.02 6.02 0 1112.03 0 6.02 6.02 0 01-12.03 0z"></path>
</svg>
</span>
</span>
</span>
<span class="Polaris-ActionList__Text">
Go there
</span>
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Box">
<span class="Polaris-ActionList__Suffix">
<span class="Polaris-Icon">
<svg viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path d="M8 16a.999.999 0 0 1-.707-1.707l4.293-4.293-4.293-4.293a.999.999 0 1 1 1.414-1.414l5 5a.999.999 0 0 1 0 1.414l-5 5a.997.997 0 0 1-.707.293z"></path></svg>
</span>
</span>
</div>
</div>
</button></li>
</ul>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%= paper_action_list do |action_list| %>
<% action_list.with_item do |item| %>
<% item.with_prefix do %>
<%= paper_thumbnail(
source: "https://burst.shopifycdn.com/photos/black-leather-choker-necklace_373x@2x.jpg",
size: :small,
) %>
<% end %>
<% item.with_suffix do %>
<%= paper_icon(name: "ChevronRightMinor") %>
<% end %>
Go here
<% end %>
<% action_list.with_item do |item| %>
<% item.with_prefix do %>
<%= paper_avatar(name: "Bob", size: :small, customer: true) %>
<% end %>
<% item.with_suffix do %>
<%= paper_icon(name: "ChevronRightMinor") %>
<% end %>
Go there
<% end %>
<% end %>