import { DollarSign, TrendingUp, Clock, LayoutList } from 'lucide-react' import { formatCurrency, formatPercent, formatMinutes } from '@/lib/format' import type { SimulationResult } from '@/domain/types' interface KpiBarProps { result: SimulationResult currency: string } interface KpiCardProps { label: string value: string sub?: string icon: React.ReactNode iconColor: string } function KpiCard({ label, value, sub, icon, iconColor }: KpiCardProps) { return (
{label}
{value}
{sub &&{sub}
}