import { Ban, ImagePlus } from 'lucide-react'; interface DropZoneOverlayProps { active: boolean; /** Show a "rejected" variant when images can't be sent to this recipient. */ rejected?: boolean; } export const DropZoneOverlay = ({ active, rejected, }: DropZoneOverlayProps): React.JSX.Element | null => { if (!active) return null; if (rejected) { return (