"use client"; import { motion } from "framer-motion"; import { ReactNode } from "react"; type Props = { title: string; value: string | number; icon?: ReactNode; }; export default function StatCard({ title, value, icon }: Props) { return ( {icon && (
{icon}
)}

{title}

{value}

); }