Update input props

This commit is contained in:
Hazem Krimi
2021-04-20 01:20:45 +01:00
parent 3217ce1c17
commit 7e46fc8b6e
-1
View File
@@ -21,7 +21,6 @@ type InputProps = {
type?: 'text' | 'email' | 'password' | 'file' | 'number';
placeholder?: string;
fullWidth?: boolean;
multiline?: boolean;
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
};