--- interface Props { icon: string; label: string; value: string | number; color?: 'gold' | 'green' | 'blue' | 'red'; } const { icon, label, value, color = 'gold' } = Astro.props; const colorClasses = { gold: 'text-gold-500', green: 'text-green-400', blue: 'text-blue-400', red: 'text-red-400' }; ---
{icon}
{value}
{label}