Components
Loading preview...
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.
npx shadcn@latest add https://21st.dev/r/kauasodreas/stepper
import Stepper from "@/components/ui/stepper";
const StepperPreview = () => {
return <Stepper />;
};
export { StepperPreview };