import React from "react"; import Icons from "../../Icons"; export default function InputCom({ label, type, name, placeholder, iconName, inputHandler, value, maxLength }) { return (
{label && ( )}
{iconName && (
)}
); }