Use the `checked` attribute to set the state of the radio button to checked.

```html
<div class="flex gap-12">
  <sd-radio-group value="1">
    <sd-radio-button value="1">
      <sd-icon name="system/image" slot="icon"></sd-icon>
      Label
    </sd-radio-button>
    <sd-radio-button value="2">
      <sd-icon name="system/image" slot="icon"></sd-icon>
      Label
    </sd-radio-button>
    <sd-radio-button value="3">
      <sd-icon name="system/image" slot="icon"></sd-icon>
      Label
    </sd-radio-button>
  </sd-radio-group>
</div>
```
