import React from 'react'; import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Text } from './Text'; import { Icon } from './Icon'; import { Stack } from './Stack'; interface StatGridItemProps { label: string; value: string | number; color?: string; icon?: LucideIcon; } export function StatGridItem({ label, value, color = 'text-white', icon }: StatGridItemProps) { return ( {icon && ( {label} )} {!icon && ( {label} )} {value} ); }