fix: add missing game icons for new categories

This commit is contained in:
zetaloop
2026-02-21 00:26:19 +08:00
parent 7ed7bad975
commit e975f1aa03
+10 -2
View File
@@ -1,13 +1,17 @@
import { import {
Bomb,
Crosshair, Crosshair,
Crown, Crown,
Flame, Flame,
Ghost,
type LucideIcon, type LucideIcon,
Radar,
Shield, Shield,
Sparkles, Sparkles,
Star,
Sword,
Swords, Swords,
Target, Target,
Zap,
} from "lucide-react" } from "lucide-react"
const iconMap: Record<string, LucideIcon> = { const iconMap: Record<string, LucideIcon> = {
@@ -18,7 +22,11 @@ const iconMap: Record<string, LucideIcon> = {
Flame, Flame,
Target, Target,
Shield, Shield,
Bomb, Zap,
Sword,
Star,
Ghost,
Radar,
} }
export function GameIcon({ name, className }: { name: string; className?: string }) { export function GameIcon({ name, className }: { name: string; className?: string }) {