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'; | 'white';
error?: boolean; error?: boolean;
errorMessage?: string; errorMessage?: string;
value: string; value?: string;
label?: string; label?: string;
name: string; name?: string;
type?: 'text' | 'email' | 'tel' | 'password' | 'file' | 'number'; type?: 'text' | 'email' | 'tel' | 'password' | 'file' | 'number';
placeholder?: string; placeholder?: string;
fullWidth?: boolean; fullWidth?: boolean;