fix: add missing game icons for new categories
This commit is contained in:
+10
-2
@@ -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 }) {
|
||||||
|
|||||||
Reference in New Issue
Block a user