Add dragConstraints
to limit how far you can drag an element.
export function Example() {
return (
<motion.div
style={{
width: 150,
height: 150,
borderRadius: 30,
backgroundColor: "#fff",
}}
drag
dragConstraints={{ top: -125, right: 125, bottom: 125, left: -125 }}
dragTransition={{ bounceStiffness: 600, bounceDamping: 20 }}
dragElastic={0.5}
/>
);
}