import { Progress } from '@/components/ui/progress' import { Target } from 'lucide-react' export type GoalDataProps = { value: number goal: number } export default function GoalDataCard(props: GoalDataProps) { return (

Goal Progress

Goal: ${props.goal}

${Math.round(props.value)} made

) }