import { ImagePlus } from 'lucide-react'; interface DropZoneOverlayProps { active: boolean; } export const DropZoneOverlay = ({ active }: DropZoneOverlayProps): React.JSX.Element | null => { if (!active) return null; return (