### RadioButtonSample
```kotlin
@Composable
fun RadioButtonSample() {
    RadioButton(selected = true, onClick = {})
}
```