import React from 'react'; import { Box } from './Box'; import { Stack } from './Stack'; import { Text } from './Text'; import { Heading } from './Heading'; import { Card } from './Card'; import { ProgressBar } from './ProgressBar'; interface GoalCardProps { title: string; icon: string; goalLabel: string; currentValue: number; maxValue: number; color?: string; } export function GoalCard({ title, icon, goalLabel, currentValue, maxValue, color = 'text-primary-blue', }: GoalCardProps) { return ( {icon} {title} {goalLabel} {currentValue}/{maxValue} ); }