import { TechIcon } from "@/components/icons/tech-icon"; import { getSkillLevelLabel } from "@/lib/score-utils"; import { getImportanceColors } from "@/lib/tech-colors"; interface SkillProgressProps { skill: { id: string; name: string; icon?: string; importance: "incontournable" | "majeure" | "standard"; }; skillEval?: { skillId: string; level: string | null; }; } export function SkillProgress({ skill, skillEval }: SkillProgressProps) { const colors = getImportanceColors(skill.importance); return (