Radio
<script>
import { Radio } from '@thetinkerinc/colibri';

import style from './style.js';

let group;
</script>

<div>Value: {JSON.stringify(group)}</div>
<Radio value="first" name="choice" {style} bind:group>Option 1</Radio>
<Radio value="second" name="choice" {style} bind:group>Option 2</Radio>
<Radio value="third" name="choice" {style} bind:group>Option 3</Radio>
Value: undefined
Props
name:
value:
any
group:
any
disabled:
style:
Object
Slots
default:
Events
This component doesn't emit any events
Styling
borderRadius:
border:
Overrides:
--colibri-border
checkBorderRadius:
size:
checkSize:
//style.js
export default style = {};