import React from "react"; import { PieChart, Pie, Cell, ResponsiveContainer, } from "recharts"; interface GaugeProps { value: number; color: string; label: string; } const Gauge: React.FC = ({ value, color, label }) => { const data = [{ value: value }, { value: 100 - value }]; return (

{label}

{value}% Meta
); }; export default Gauge;