import React from 'react'; import { Pizza, PlayCircle, Moon, Paintbrush } from 'lucide-react'; import GatherResourcesButton from './GatherResourcesButton'; import { Pet } from '../types/Pet'; interface InteractionMenuProps { pet: Pet; onFeed: () => void; onPlay: () => void; onSleep: () => void; onCustomize: () => void; } export default function InteractionMenu({ pet, onFeed, onPlay, onSleep, onCustomize }: InteractionMenuProps) { const ActionButton = ({ icon: Icon, label, onClick, color }: { icon: any; label: string; onClick: () => void; color: string }) => ( ); return (