import { type FC } from "react"; import { DocumentUpload, VideoSquare } from "iconsax-react"; type VideoUploadZoneProps = { getRootProps: () => React.HTMLAttributes; getInputProps: () => React.InputHTMLAttributes; }; const VideoUploadZone: FC = ({ getRootProps, getInputProps }) => { return (
ویدیو مورد نظر را آپلود کنید
آپلود
); }; export default VideoUploadZone;