import { Tooltip } from "@mui/joy"; import type { StatCardProps } from "@/types/statistics"; import { cn } from "@/utils"; export const StatCard = ({ icon, label, count, onClick, tooltip, className }: StatCardProps) => { const content = (
{icon} {label}
{count}
); if (tooltip) { return ( {content} ); } return content; };