From 3c457231a8c221b07c7ddd67afe8baebf6a0ba1e Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Wed, 23 Jul 2025 20:56:01 +0000 Subject: [PATCH] Replace numbers with people icons Replace the numbers on the circles in the "Parliament of Sikinia" puzzle with people icons. --- src/components/SikiniaParliamentPuzzle.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SikiniaParliamentPuzzle.tsx b/src/components/SikiniaParliamentPuzzle.tsx index 0b6cf05..e9f24ca 100644 --- a/src/components/SikiniaParliamentPuzzle.tsx +++ b/src/components/SikiniaParliamentPuzzle.tsx @@ -3,7 +3,7 @@ import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Badge } from '@/components/ui/badge'; import { Alert, AlertDescription } from '@/components/ui/alert'; -import { Play, RotateCcw, Trophy, Clock, Info, ChevronDown, ChevronUp, Crown, Shield, Star, Heart, Diamond, Zap, Target, Award, Gem, Sparkles } from 'lucide-react'; +import { Play, RotateCcw, Trophy, Clock, Info, ChevronDown, ChevronUp, User, UserCircle, Users, UserCheck, UserX, Baby, PersonStanding, Smile, Frown, Meh } from 'lucide-react'; import SocialShare from '@/components/SocialShare'; interface Person { @@ -216,7 +216,7 @@ const SikiniaParliamentPuzzle: React.FC = ({ showS }; const getPersonIcon = (id: number) => { - const icons = [Crown, Shield, Star, Heart, Diamond, Zap, Target, Award, Gem, Sparkles]; + const icons = [User, UserCircle, Users, UserCheck, UserX, Baby, PersonStanding, Smile, Frown, Meh]; return icons[id]; };