import { Close } from "@mui/icons-material"; import { Dialog, DialogTitle, IconButton } from "@mui/material"; import ChangeStatusForm from "./Form"; const ChangeStatusDialog = ({ open, setOpen, mutate, row }) => { return ( setOpen(false)} sx={(theme) => ({ position: "absolute", right: 8, top: 8, zIndex: 50, color: theme.palette.grey[500], })} > تغییر وضعیت {open && } ); }; export default ChangeStatusDialog;