Revert "arab lang"

This reverts commit 088781e76a.
This commit is contained in:
2024-05-22 14:00:57 +05:00
parent 088781e76a
commit 6738ed1da4
25 changed files with 670 additions and 611 deletions
@@ -8,13 +8,13 @@ type ViewOnMapProps = {
const ViewOnMapButton = ({ onClick, isVillaSelected }: ViewOnMapProps) => {
return (
<button
className={`w-1/2 flex justify-center gap-1 items-center rounded-ee-2xl hover:bg-secondary transition-all duration-200 border-l ${
className={`w-1/2 border-r flex justify-center gap-1 items-center hover:bg-secondary transition-all duration-200 ${
isVillaSelected ? "bg-[#EAE5E0] rounded-es-2xl" : ""
}`}
onClick={onClick}
>
View on Map
<ViewOnMapIcon />
العرض على الخريطة
</button>
);
};