A draggable stepper component that lets users increment or decrement a number by dragging up or down. It includes smooth animations, clamping between min and max values, and works with both mouse and touch input.
import Stepper from "@/components/ui/stepper"; const StepperPreview = () => { return <Stepper />; }; export { StepperPreview };