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
+4 -4
View File
@@ -10,14 +10,14 @@ const BackButton = ({ title = "", onClick, className }: BackButtonProps) => {
return (
<button
onClick={onClick}
className={`flex items-center gap-1 py-[6px] pl-2 pr-4 bg-white rounded-full text-sm font-medium border border-[#C7BDBA] justify-center select-none hover:bg-secondary transition-all duration-200 ${
className={`flex items-center gap-1 py-[6px] pr-2 pl-4 bg-white rounded-full text-sm font-medium border border-[#C7BDBA] justify-center select-none hover:bg-secondary transition-all duration-200 ${
title ? "w-fit" : "w-10"
} ${className ? className : ""}`}
>
<div className="w-5 h-5 flex items-center justify-center">
<BackIcon className="w-[5px] h-[10px]" />
</div>
{title}
<div className="w-5 h-5 flex items-center justify-center">
<BackIcon className="w-[5px] h-[10px] rotate-180" />
</div>
</button>
);
};