Previews

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