change design calendar booking

This commit is contained in:
Ehsan
2024-09-26 17:45:34 +03:30
parent 72821b0f2a
commit 9e2ce3f737
4 changed files with 61 additions and 14 deletions
@@ -0,0 +1,21 @@
import { Button } from "@mui/material";
import Image from "next/image";
function NextIconDatePicker({ nextIconDatePicker }) {
return (
<Button
className="!min-w-0 !p-0 !rounded-full"
ref={nextIconDatePicker}
onClick={(e) => e.preventDefault()}
>
<Image
src="/assets/icons/arrow-right.svg"
className="icon-left-datepicker"
height={24}
width={24}
/>
</Button>
);
}
export default NextIconDatePicker;