import { Box } from '@/ui/Box'; import { Grid } from '@/ui/Grid'; import { Text } from '@/ui/Text'; interface Stat { label: string; value: string | number; color?: string; } interface ProfileStatGridProps { stats: Stat[]; } export function ProfileStatGrid({ stats }: ProfileStatGridProps) { return ( {stats.map((stat, idx) => ( {stat.value} {stat.label} ))} ); }