StreamToggleButton
fun StreamToggleButton(modifier: Modifier = Modifier, toggleState: State<ToggleableState> = rememberUpdatedState(newValue = ToggleableState(false)), onText: String, offText: String, onIcon: ImageVector? = null, offIcon: ImageVector? = onIcon, onStyle: StreamButtonStyle, offStyle: StreamButtonStyle = onStyle, enabled: Boolean = true, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, onClick: (ToggleableState) -> Unit = {})