Stepper

fun Stepper(value: Int, onValueChange: (Int) -> Unit, modifier: Modifier = Modifier, active: Boolean = value > 0, minValue: Int = 0, maxValue: Int = Int.MAX_VALUE)
fun Stepper(value: Int, active: Boolean, onValueChange: (Int) -> Unit, modifier: Modifier = Modifier, addContentDescription: String = stringResource(id = R.string.orbit_cd_stepper_add), removeContentDescription: String = stringResource(id = R.string.orbit_cd_stepper_remove), valueValidator: (Int) -> Boolean? = null)