import React from "react"; import { useTranslations } from "next-intl"; import { Upload } from "lucide-react"; interface FullScreenDropZoneProps { isDragging: boolean; } const FullScreenDropZone: React.FC = ({ isDragging }) => { const t = useTranslations("text.fileUpload"); if (!isDragging) return null; return (

{t("dragTip")}

); }; export default FullScreenDropZone;