"use client"; import { cn } from "@/lib/utils"; import { motion, useMotionValue, useTransform, animate } from "framer-motion"; import { useEffect } from "react"; function CountAnimation({ number, className, }: { number: number; className?: string; }) { const count = useMotionValue(0); const rounded = useTransform(count, Math.round); useEffect(() => { const animation = animate(count, number, { duration: 1 }); return animation.stop; }, [number]); return {rounded}; } export { CountAnimation };