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 class="FormControl-radio-group-wrap">
<fieldset aria-describedby="validation-71a2cc70-7df1-4133-8b77-82256a616bed caption-71a2cc70-7df1-4133-8b77-82256a616bed" class="">
<legend class="FormControl-label mb-2">
Question: what kind of bear is best?
</legend>
<div class="FormControl-spacingWrapper">
<div class="FormControl-radio-wrap">
<input class="FormControl-radio" type="radio" value="bears" name="my-radio-group" id="my-radio-group_bears" />
<span class="FormControl-radio-labelWrap">
<label class="FormControl-label" for="my-radio-group_bears">
Bears
</label>
</span>
</div>
<div class="FormControl-radio-wrap">
<input class="FormControl-radio" type="radio" value="beets" name="my-radio-group" id="my-radio-group_beets" />
<span class="FormControl-radio-labelWrap">
<label class="FormControl-label" for="my-radio-group_beets">
Beets
</label>
</span>
</div>
<div class="FormControl-radio-wrap">
<input class="FormControl-radio" type="radio" value="bsg" name="my-radio-group" id="my-radio-group_bsg" />
<span class="FormControl-radio-labelWrap">
<label class="FormControl-label" for="my-radio-group_bsg">
Battlestar Galactica
</label>
</span>
</div>
</div>
</fieldset>
<div class="mt-2">
<div class="FormControl-inlineValidation" id="validation-71a2cc70-7df1-4133-8b77-82256a616bed" hidden="hidden">
<span class="FormControl-inlineValidation--visual" data-target="" hidden><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill">
<path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path>
</svg></span>
<span class=" FormControl-inlineValidation--visual" data-target=""><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">
<path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>
</svg></span>
<span></span>
</div>
</div>
<div class="mt-2">
<span class="FormControl-caption" id="caption-71a2cc70-7df1-4133-8b77-82256a616bed">There are basically two schools of thought</span>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
system_arguments = {
name: name,
label: label,
caption: caption,
validation_message: validation_message,
disabled: disabled
}
render(Primer::Alpha::RadioButtonGroup.new(**system_arguments)) do |component|
component.radio_button(label: "Bears", value: "bears")
component.radio_button(label: "Beets", value: "beets")
component.radio_button(label: "Battlestar Galactica", value: "bsg")
end
Param Description Input

No assets to display.