import React from 'react'; /** * BarMeter Component * Reusable horizontal bar chart for showing metrics */ export default function BarMeter({ label, value, max = 100, color = "#D85A30", suffix = "%" }) { const pct = Math.min((value / max) * 100, 100); return (
{label} {value}{suffix}
); }