GenericToggleButton

fun GenericToggleButton(    modifier: Modifier = Modifier,     toggleState: State<ToggleableState> = rememberUpdatedState(newValue = ToggleableState(false)),     onClick: (ToggleableState) -> Unit = {},     onContent: @Composable BoxScope.(onClick: (ToggleableState) -> Unit) -> Unit,     offContent: @Composable BoxScope.(onClick: (ToggleableState) -> Unit) -> Unit)