<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>
//style.js
export default style = {};