export interface StepperInputProps {
value: number;
min: number;
max: number;
onChange: (v: number) => void;
decrementLabel?: string;
incrementLabel?: string;
}
export function StepperInput({
value,
min,
max,
onChange,
decrementLabel = "Decrease",
incrementLabel = "Increase",
}: StepperInputProps) {
return (
{value}
);
}