diff --git a/src/components/Input/index.tsx b/src/components/Input/index.tsx index 51d3cd5..bcbdad7 100644 --- a/src/components/Input/index.tsx +++ b/src/components/Input/index.tsx @@ -16,7 +16,7 @@ type InputProps = { | 'white'; error?: boolean; errorMessage?: string; - value?: string; + value?: string | number; label?: string; name?: string; type?: 'text' | 'email' | 'tel' | 'password' | 'file' | 'number';