Files
gridpilot.gg/apps/website/lib/formatters/SkillLevelIconFormatter.ts
2026-01-24 01:07:43 +01:00

12 lines
281 B
TypeScript

export class SkillLevelIconFormatter {
static getIcon(skillLevel: string): string {
const icons: Record<string, string> = {
beginner: '🥉',
intermediate: '🥈',
advanced: '🥇',
expert: '👑',
};
return icons[skillLevel] || '🏁';
}
}