export interface InputI { type: 'email' | 'password' | 'text' | 'number' | 'file' | 'tel'; value?: string | File; placeholder?: string; icon?: string; title?: string; name: string; error?: string; required?: boolean; valid?: boolean; iconBackOffice?: boolean; }