import React from "react"; import Icons from "../../Icons"; import { Link } from "react-router-dom"; export default function InputCom({ label, type, name, placeholder, iconName, passIcon, inputHandler, value, forgotPassword, onClick, disable, blurHandler, }) { return (
{label && ( )} {forgotPassword && Forgot Password?}
{iconName && (
)} {passIcon && (
)}
); }