14 lines
651 B
TypeScript
14 lines
651 B
TypeScript
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>
|
||
)
|
||
} |