An example of a number counter with plus and minus buttons, rebuilt from the official Motion example using motion/react.
"use client" import NumberCounter from "@/components/ui/motion-number-counter" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <NumberCounter /> </div> ) }