MdSelectOption

@Composable
fun MdSelectOption(disabled: Boolean? = null, selected: Boolean? = null, value: String? = null, type: MenuItemType? = null, typeaheadText: String? = null, displayText: String? = null, attrs: AttrBuilderContext<HTMLElement>? = null, content: @Composable MdSelectOptionScope.() -> Unit? = null)(source)

This component actually extends MdMenuItem, but not all its attributes are added here as parameters because they are not conventional in this context. See https://github.com/material-components/material-web/blob/516cbc02bf770b7c3c5c6b546f1e5d81939b9f23/select/select-option.ts#L33-L34 for more details.