import { Text } from '@/ui/Text'; import { Group } from '@/ui/Group'; import { Card } from '@/ui/Card'; import React from 'react'; interface MilestoneItemProps { label: string; value: string; icon: string; } export function MilestoneItem({ label, value, icon }: MilestoneItemProps) { return ( {icon} {label} {value} ); }