interface InputProps { label: string value: string onChange: (value: string) => void type?: string } export function LoginInput({ label, value, onChange, type = 'text', }: InputProps) { return (