import type { Component } from "solid-js"; const ratings = [ { color: "red", range: "1-2", label: "Very Bad" }, { color: "orange", range: "3-4", label: "Bad" }, { color: "yellow", range: "5-6", label: "Okay" }, { color: "green", range: "7-8", label: "Good" }, { color: "blue", range: "9-10", label: "Excellent" }, ]; const RatingLegend: Component = () => (