add reminder conflict fixed

This commit is contained in:
victorAnumudu
2023-02-06 14:04:47 +01:00
parent 19491f6aad
commit ad84db5eb2
3 changed files with 175 additions and 23 deletions
@@ -9,6 +9,7 @@ export default function InputCom({
iconName,
inputHandler,
value,
maxLength
}) {
return (
<div className="input-com">
@@ -28,6 +29,8 @@ export default function InputCom({
className="input-field placeholder:text-base text-bese px-6 text-dark-gray dark:text-white w-full h-full bg-[#FAFAFA] dark:bg-[#11131F] focus:ring-0 focus:outline-none"
type={type}
id={name}
name={name}
maxLength={maxLength}
/>
{iconName && (
<div className="absolute right-6 bottom-[19px] z-10">
@@ -37,4 +40,4 @@ export default function InputCom({
</div>
</div>
);
}
}