Previews

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
# With caption
render(Primer::Alpha::RadioButtonGroup.new(caption: "With a caption", name: "my-radio-group", label: "Question: what kind of bear is best?")) do |component|
component.radio_button(label: "Bears", value: "bears1")
component.radio_button(label: "Beets", value: "beets1")
component.radio_button(label: "Battlestar Galactica", value: "bsg1")
end
# Visually hidden label
render(Primer::Alpha::RadioButtonGroup.new(visually_hide_label: true, name: "my-radio-group", label: "Question: what kind of bear is best?")) do |component|
component.radio_button(label: "Bears", value: "bears2")
component.radio_button(label: "Beets", value: "beets2")
component.radio_button(label: "Battlestar Galactica", value: "bsg2")
end
# Full width
render(Primer::Alpha::RadioButtonGroup.new(full_width: true, name: "my-radio-group", label: "Question: what kind of bear is best?")) do |component|
component.radio_button(label: "Bears", value: "bears3")
component.radio_button(label: "Beets", value: "beets3")
component.radio_button(label: "Battlestar Galactica", value: "bsg3")
end
# Disabled
render(Primer::Alpha::RadioButtonGroup.new(disabled: true, name: "my-radio-group", label: "Question: what kind of bear is best?")) do |component|
component.radio_button(label: "Bears", value: "bears4")
component.radio_button(label: "Beets", value: "beets4")
component.radio_button(label: "Battlestar Galactica", value: "bsg4")
end