const LEGEND = [ { label: "Sangat Tinggi", color: "#ef4444" }, { label: "Tinggi", color: "#f97316" }, { label: "Sedang", color: "#f59e0b" }, { label: "Rendah", color: "#10b981" }, { label: "Tidak Prioritas", color: "#6b7280" }, ]; export function PovertyHud() { return ( <> {/* Floating Legend — fuzzy priority marker colors */}
Prioritas Fuzzy
{LEGEND.map((item) => (
{item.label}
))}
); }