This commit is contained in:
Belén Curcio
2018-07-24 13:22:22 -03:00
parent 50e46b4606
commit 96e7407d4c
5 changed files with 18 additions and 18 deletions
@@ -7,8 +7,8 @@ interface InnerProps extends InputHTMLAttributes<HTMLInputElement> {
classes?: typeof styles;
}
const Input: StatelessComponent<InnerProps> = ({ className, ...rest }) => {
const TextField: StatelessComponent<InnerProps> = ({ className, ...rest }) => {
return <input {...rest} className={cn(styles.root, className)} />;
};
export default Input;
export default TextField;