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>
    </>
  );
}