arab lang

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