import React, { ReactNode } from 'react'; import { Box } from './primitives/Box'; import { Stack } from './primitives/Stack'; import { Text } from './Text'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; interface StatGridItemProps { label: string; value: string | number; icon?: LucideIcon; color?: string; } /** * StatGridItem * * A simple stat display for use in a grid. */ export function StatGridItem({ label, value, icon, color = 'text-primary-blue' }: StatGridItemProps) { return ( {icon && ( )} {value} {label} ); }