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
<div class="">
<div class="Polaris-Labelled__LabelWrapper">
<div class="Polaris-Label">
<label class="Polaris-Label__Text" for="store_name">Store name</label>
</div>
</div>
<div class="Polaris-Connected">
<div class="Polaris-Connected__Item Polaris-Connected__Item--primary">
<div data-paper-text-field-has-value-class="Polaris-TextField--hasValue" data-paper-text-field-clear-button-hidden-class="Polaris-TextField__Hidden" data-controller="paper-text-field" class="Polaris-TextField Polaris-TextField--hasValue">
<input type="text" name="store_name" id="store_name" value="Jaded Pixel" data-paper-text-field-target="input" data-action="paper-text-field#syncValue" class="Polaris-TextField__Input" />
<button
type="button"
class="Polaris-TextField__ClearButton
"
tabindex="0"
data-paper-text-field-target="clearButton"
data-action="paper-text-field#clear"
>
<span class="Polaris-Text--root Polaris-Text--bodyMd Polaris-Text--regular Polaris-Text--visuallyHidden">
Clear
</span>
<span class="Polaris-Icon Polaris-Icon--colorBase Polaris-Icon--applyColor">
<svg viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path fill-rule="evenodd" d="M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16zm-2.293 4.293a1 1 0 0 0-1.414 1.414l2.293 2.293-2.293 2.293a1 1 0 1 0 1.414 1.414l2.293-2.293 2.293 2.293a1 1 0 1 0 1.414-1.414l-2.293-2.293 2.293-2.293a1 1 0 0 0-1.414-1.414l-2.293 2.293-2.293-2.293z"></path></svg>
</span>
</button>
<div class="Polaris-TextField__Backdrop"></div>
</div>
</div>
</div>
</div>
1
2
3
4
5
6
<%= paper_text_field(
name: :store_name,
value: "Jaded Pixel",
label: "Store name",
clear_button: true,
) %>