28 lines
897 B
TypeScript
28 lines
897 B
TypeScript
import React from "react";
|
|
import { InputCompOne } from "..";
|
|
|
|
const CreditAccount: React.FC = () => {
|
|
return (
|
|
<>
|
|
<div className="w-full rounded py-3 bg-[#5C2684] px-5">
|
|
<p className="text-base text-[#FBB700] tracking-[3%] font-extrabold w-fit">
|
|
CREDIT ACCOUNT ( Your account to receive your loan )
|
|
</p>
|
|
</div>
|
|
<InputCompOne
|
|
parentClass="max-w-[29.4375rem] w-full my-5 ml-5"
|
|
label="Disbursement Account Number "
|
|
name="disbursementAccountNumber"
|
|
labelSpan="( Your FCMB Account )"
|
|
labelSpanClass="text-[12px] text-[#5C2684] ml-1"
|
|
parentInputClass="w-full"
|
|
labelClass="font-bold text-[18px] leading-[21.7808px] tracking-[2%] text-[#5C2684] mb-[2px]"
|
|
input
|
|
inputClass="w-full h-[36px] bg-[#EFEFEF] px-[2px] rounded-[6px]"
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default CreditAccount;
|