Button Group
Group a series of buttons together on a single line or stack them in a vertical column.
Last updated
Group a series of buttons together on a single line or stack them in a vertical column.
Last updated
{% include 'radix:button-group' with {
size: 'lg',
items: [
[
{html_tag: 'button', color: 'primary', content: 'Left'},
{html_tag: 'button', color: 'primary', content: 'Middle'},
{html_tag: 'button', color: 'primary', content: 'Right'},
],
]œ
} %}{% include 'radix:button-group' with {
vertical: true,
items: [
[
{
type: 'input',
input_type: 'radio',
label: 'First Input',
remove_wrapper: true,
toggle: true,
toggle_variant: 'outline-danger',
id: 'first-input',
name: 'vbtn-radio',
checked: true,
},
{
type: 'input',
input_type: 'radio',
label: 'Second Input',
remove_wrapper: true,
toggle: true,
toggle_variant: 'outline-danger',
id: 'second-input',
name: 'vbtn-radio'
},
{
type: 'input',
input_type: 'radio',
label: 'Third Input',
remove_wrapper: true,
toggle: true,
toggle_variant: 'outline-danger',
id: 'third-input',
name: 'vbtn-radio'
},
],
]
} %}