import React from "react"; import { scoreColor, scoreLabel } from "./types"; export default function ScoreBar({ score }: { score: number }) { const color = scoreColor(score); return (