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