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]; };