complete management account page

This commit is contained in:
Alihaghighattalab
2024-08-08 13:02:26 +03:30
parent 65943cb1f3
commit 7dfe6f8b8c
15 changed files with 173 additions and 1 deletions
@@ -0,0 +1,14 @@
import { Add } from "iconsax-react"
export const CreateNewCart = () => {
return (
<div className="bg-auth-form w-full h-full flex items-center justify-center rounded-[40px] p-[18px] py-10 cursor-pointer min-h-[226px]">
<div className="flex flex-col gap-6 items-center">
<div className="size-16 rounded-full flex justify-center items-center bg-secondary-color">
<Add color="#11212D" className="size-10" />
</div>
<p className="text-base font-medium text-primary-text-color">ایجاد حساب بانکی جدید</p>
</div>
</div>
)
}