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
<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-padding-inline-end-xs: var(--p-space-4)" 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="M11.768.768a2.5 2.5 0 0 0-3.536 0l-7.464 7.464a2.5 2.5 0 0 0 0 3.536l7.464 7.464a2.5 2.5 0 0 0 3.536 0l7.464-7.464a2.5 2.5 0 0 0 0-3.536l-7.464-7.464zm-2.768 5.232a1 1 0 1 1 2 0v4a1 1 0 1 1-2 0v-4zm2 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"></path></svg>
</span>
</div>
<div class="Polaris-Banner__ContentWrapper">
<h2 class="Polaris-Text--root Polaris-Text--headingMd Polaris-Text--semibold Polaris-Text--break">
High risk of fraud detected
</h2>
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-block-end-xs: var(--p-space-05);--pc-box-padding-block-start-xs: var(--p-space-05)" class="Polaris-Box">
<p>
Before fulfilling this order or capturing payment, please
<a href="#" data-paper-unstyled="true" class="Polaris-Link Polaris-Link--monochrome">review the Risk Analysis</a>
and determine if this order is fraudulent.
</p>
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-block-start-xs: var(--p-space-4)" 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-2)" class="Polaris-Box">
<a href="#" data-controller="paper-button" class="Polaris-Banner__Button Polaris-Banner__PrimaryAction 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>
1
2
3
4
5
6
7
8
9
10
11
12
<%= paper_banner(
title: "High risk of fraud detected",
status: :critical,
) do |banner| %>
<p>
Before fulfilling this order or capturing payment, please
<%= paper_link(url: "#", monochrome: true) { "review the Risk Analysis" } %>
and determine if this order is fraudulent.
</p>
<% banner.with_action(url: '#') { "Review risk analysis" } %>
<% end %>