An example of using the useTime hook to animate an element at a constant speed.
"use client" import UseTime from "@/components/ui/motion-use-time" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <UseTime /> </div> ) }