"use client"; import { motion } from "framer-motion"; import { useRef } from "react"; import LordIcon from "./LordIcon"; export default function StatCard({ label, value, icon, }: { label: string; value: any; icon: string; }) { const iconRef = useRef(null); return ( iconRef.current?.playFromBeginning()} onMouseLeave={() => iconRef.current?.goToFirstFrame()} >
{label}
{value}
); }