From e975f1aa03f951fee0e38d54ea6992929c26838c Mon Sep 17 00:00:00 2001 From: zetaloop Date: Sat, 21 Feb 2026 00:26:19 +0800 Subject: [PATCH] fix: add missing game icons for new categories --- lib/game-icons.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/game-icons.tsx b/lib/game-icons.tsx index b4f0580..b319408 100644 --- a/lib/game-icons.tsx +++ b/lib/game-icons.tsx @@ -1,13 +1,17 @@ import { - Bomb, Crosshair, Crown, Flame, + Ghost, type LucideIcon, + Radar, Shield, Sparkles, + Star, + Sword, Swords, Target, + Zap, } from "lucide-react" const iconMap: Record = { @@ -18,7 +22,11 @@ const iconMap: Record = { Flame, Target, Shield, - Bomb, + Zap, + Sword, + Star, + Ghost, + Radar, } export function GameIcon({ name, className }: { name: string; className?: string }) {