import React from 'react'; /** * MetricCard Component * Display key metrics with optional positive/negative/neutral tone */ export default function MetricCard({ value, label, tone = "neutral" }) { const colors = { positive: "#1D9E75", negative: "#D85A30", neutral: "#222" }; return (
{value}
{label}
); }