| 7 | import { MessageSquare } from 'lucide-react' |
| 8 | |
| 9 | interface SearchPopupProps { |
| 10 | isOpen: boolean |
| 11 | onClose: () => void |
| 12 | } |
| 13 | |
| 14 | export default function SearchPopup({ isOpen, onClose }: SearchPopupProps) { |
| 15 | const [searchQuery, setSearchQuery] = useState('') |
nothing calls this directly
no outgoing calls
no test coverage detected