File size: 198 Bytes
f5071ca
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import React from "react";
import "./SignFormStyles.css";

function SignFormInput({ ...restProps }) {
  return <input className="sign-form-input" {...restProps} />;
}

export default SignFormInput;