import React from 'react'; import { Radar, ChevronLeft } from 'lucide-react'; interface HeaderProps { onBack?: () => void; showBack?: boolean; } export const Header: React.FC = ({ onBack, showBack }) => { return (
{showBack && onBack && ( )}

Prospects Intel

B2B Market Intelligence Agent
); };