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
<div tabindex="0" role="status" class="Polaris-Banner Polaris-Banner--statusCritical Polaris-Banner--withinPage">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-width: 100%" class="Polaris-Box">
<div style="--pc-vertical-stack-align: ;--pc-vertical-stack-order: column" class="Polaris-VerticalStack">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Banner__TopBar Polaris-Box">
<div style="--pc-horizontal-stack-align: space-between;--pc-horizontal-stack-block-align: center;--pc-horizontal-stack-wrap: nowrap;--pc-horizontal-stack-gap-xs: var(--p-space-2)" class="Polaris-HorizontalStack">
<div style="--pc-horizontal-stack-align: ;--pc-horizontal-stack-wrap: nowrap;--pc-horizontal-stack-gap-xs: var(--p-space-1)" class="Polaris-HorizontalStack">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Box">
<span class="Polaris-Icon Polaris-Icon--colorCritical Polaris-Icon--applyColor">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path d="M10 6a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.75.75 0 0 1 .75-.75Z"></path><path d="M11 13a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path><path fill-rule="evenodd" d="M11.237 3.177a1.75 1.75 0 0 0-2.474 0l-5.586 5.585a1.75 1.75 0 0 0 0 2.475l5.586 5.586a1.75 1.75 0 0 0 2.474 0l5.586-5.586a1.75 1.75 0 0 0 0-2.475l-5.586-5.585Zm-1.414 1.06a.25.25 0 0 1 .354 0l5.586 5.586a.25.25 0 0 1 0 .354l-5.586 5.585a.25.25 0 0 1-.354 0l-5.586-5.585a.25.25 0 0 1 0-.354l5.586-5.586Z"></path></svg>
</span>
</div>
<h2 class="Polaris-Text--root Polaris-Text--headingSm Polaris-Text--semibold Polaris-Text--break">
High risk of fraud detected
</h2>
</div>
</div>
</div>
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-block-end-xs: var(--p-space-4);--pc-box-padding-block-start-xs: var(--p-space-4);--pc-box-padding-inline-end-xs: var(--p-space-4);--pc-box-padding-inline-start-xs: var(--p-space-4)" class="Polaris-Box">
<div style="--pc-vertical-stack-align: ;--pc-vertical-stack-order: column;--pc-vertical-stack-gap-xs: var(--p-space-3)" class="Polaris-Banner__ContentWrapper Polaris-VerticalStack">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Box">
<p>
Before fulfilling this order or capturing payment, please
<a href="#" data-polaris-unstyled="true" class="Polaris-Link Polaris-Link--monochrome">review the Risk Analysis</a>
and determine if this order is fraudulent.
</p>
</div>
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid" class="Polaris-Box">
<div class="Polaris-ButtonGroup">
<div class="Polaris-ButtonGroup__Item">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-inline-end-xs: var(--p-space-1)" class="Polaris-Box">
<a href="#" data-controller="polaris-button" class="Polaris-Button">
<span class="Polaris-Button__Content">
<div class="Polaris-Button__Text">
Review risk analysis
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
<%= polaris_banner(
title: "High risk of fraud detected",
status: :critical,
) do |banner| %>
<p>
Before fulfilling this order or capturing payment, please
<%= polaris_link(url: "#", monochrome: true) { "review the Risk Analysis" } %>
and determine if this order is fraudulent.
</p>
<% banner.with_action(url: '#') { "Review risk analysis" } %>
<% end %>