'use client'; import React from 'react'; import { Trophy, Medal, Target, Users, LucideIcon } from 'lucide-react'; import { Card } from '@/ui/Card'; import { Stack } from '@/ui/Stack'; import { Box } from '@/ui/Box'; import { Text } from '@/ui/Text'; import { Icon } from '@/ui/Icon'; import { Surface } from '@/ui/Surface'; interface StatBoxProps { icon: LucideIcon; label: string; value: string | number; color: string; } export function StatBox({ icon, label, value, color }: StatBoxProps) { return ( {value} {label} ); }