const Input = ({ label, type = 'text', placeholder, id, ...props }) => { return (
{label && }
); }; export default Input;