Files
asan-installer-front/src/components/management-bank-accounts/create-new-cart.tsx
T
2024-08-08 13:02:26 +03:30

14 lines
651 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
)
}