A Motion for React example showing long-press interaction. The button's events update a progress motion value that drives multiple animations of other motion values.
"use client" import HoldToConfirm from "@/components/ui/motion-hold-to-confirm" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <HoldToConfirm /> </div> ) }