Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
507 Bytes
import React from "react";
import "./FormInput.scss";
const FormInput = ({ handleChange, label, ...otherProps }) => {
return (
<div className="group">
<input className="form-input" onChange={handleChange} {...otherProps} />
{label ? (
<label
className={`${
otherProps.value.length ? "shrink" : ""
} form-input-label`}
>
{label}
</label>
) : null}
</div>
);
};
export default FormInput;