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