import { Heart, MessageCircle, X } from 'lucide-react'; import type { Pet } from '@/data/pets'; interface MatchModalProps { pet: Pet; onClose: () => void; } export function MatchModal({ pet, onClose }: MatchModalProps) { return (
{/* Close button */} {/* Hearts animation */}

It's a Match!

You and {pet.name} liked each other!

{/* Pet image */}
{pet.name}
{/* Actions */}
); }