Update input component

This commit is contained in:
Hazem Krimi
2021-05-21 22:41:45 +01:00
parent b166ad32cf
commit 3d7c3db9af
+2 -2
View File
@@ -16,9 +16,9 @@ type InputProps = {
| 'white';
error?: boolean;
errorMessage?: string;
value: string;
value?: string;
label?: string;
name: string;
name?: string;
type?: 'text' | 'email' | 'tel' | 'password' | 'file' | 'number';
placeholder?: string;
fullWidth?: boolean;