'use client'; import { motion } from 'framer-motion'; interface StatsOverlayProps { onlineUsers: number; totalPixels: number; zoom: number; } export function StatsOverlay({ onlineUsers, totalPixels, zoom }: StatsOverlayProps) { return (
{onlineUsers} online
{totalPixels.toLocaleString()} pixels
); }