ToggleableIconButton

@Composable
fun ToggleableIconButton(value: Boolean, onValueChange: (Boolean) -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, focusable: Boolean = true, style: IconButtonStyle = JewelTheme.iconButtonStyle, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, content: @Composable BoxScope.(ToggleableIconButtonState) -> Unit)