import type { LucideIcon } from 'lucide-react' interface MetricCardProps { icon: LucideIcon label: string value: string delta?: string hint?: string color: string } export function MetricCard({ icon: Icon, label, value, delta, hint, color }: MetricCardProps) { return (