import { Box, Button, Paper, Typography } from "@mui/material"; import AddIcon from "@mui/icons-material/Add"; import DeleteForeverIcon from "@mui/icons-material/DeleteForever"; import { useRef } from "react"; const UploadSystem = ({ selectedImage, handleUploadChange, imageSize, fileType, showAddIcon }) => { const fileInputRef = useRef(null); const handleClick = () => { fileInputRef.current.click(); }; return ( {showAddIcon ? ( فرمت قابل قبول : png, jpg
حداکثر 3Mb
) : ( <> {fileType && fileType.startsWith("image/") && ( )} )}
); }; export default UploadSystem;