RadioButtonRow
expect fun RadioButtonRow(selected: Boolean, onClick: () -> Unit, modifier: Modifier = Modifier, modifierAfterSelectable: Modifier = Modifier, radioButtonModifier: Modifier = Modifier, enabled: Boolean = true, radioButtonIdJsDom: String, label: @Composable () -> Unit)(source)
A conventional row with a radio button and its label. Compose UI doesn't provide this Component officially and Material Design's official size specs are a bit vague on this. Therefore, this component is designed for conventional use following a mixture of conventions observed from https://github.com/material-components/material-web/blob/main/docs/components/radio.md#accessibility and https://kotlinlang.org/api/compose-multiplatform/material3/androidx.compose.material3/-radio-button.html. By default, this row only has spacing between the radio button and the label, and has no padding around.