Radio from @kibrisyazilim/design-system. Use via `window.KibrisDS.Radio` (bundle loaded from the root `_ds_bundle.js`).

One option in a radio group. Give every radio in a group the same `name`.

## Props

```ts
interface RadioProps {
  label?: React.ReactNode;
  description?: React.ReactNode;
  invalid?: boolean;
  className?: string;
  id?: string;
  style?: CSSProperties;
  children?: React.ReactNode;
}
```

## Related

`RadioGroup`
