import clsx from "clsx"; interface Props { label: string; percentage: number; color: "blue" | "orange" | "green"; className?: string; } export default function ProgressBar({label, percentage, color, className}: Props) { const progressColorClass: {[key in typeof color]: string} = { blue: "bg-mti-blue-light", orange: "bg-mti-orange-light", green: "bg-mti-green-light", }; return (
{label}
); }