19 lines
453 B
JavaScript
19 lines
453 B
JavaScript
import PlusB from "@/components/icons/PlusB";
|
|
import { Button } from "@mui/material";
|
|
import React from "react";
|
|
|
|
function AddBtn({ handleOpen }) {
|
|
return (
|
|
<Button
|
|
className="!bg-[#5559CE] !w-fit !shadow-none !rounded-[4px] !gap-[4px] !text-[#EFEFEF] !text-[14px] md:!text-[16px] !font-medium"
|
|
onClick={handleOpen}
|
|
variant="contained"
|
|
>
|
|
<PlusB />
|
|
اضافه کردن
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
export default AddBtn;
|