export default function Example() {
return (
<>
<Fieldset css={{ maxWidth: 150 }}>
<b> Radio group example</b>
<RadioGroup defaultValue={"opt1"} variant="primary">
<RadioButton
label="Choice 1 demonstrates how this text wraps to two line"
value="opt1"
id="opt1"
/>
<RadioButton label="Click to see focus" value="opt2" id="opt2" />
</RadioGroup>
</Fieldset>
</>
);
}
To enter the code editing mode, press Enter. To exit the edit mode, press Escape
You are editing the code. To exit the edit mode, press Escape