interface InputProps { label: string value: string onChange: (value: string) => void type?: string } export function LoginInput({ label, value, onChange, type = 'text', }: InputProps) { return (
onChange(e.target.value)} className="w-full rounded-lg border border-gray-300 px-3 py-2 focus:ring-2 focus:ring-[#7b0f1d] focus:outline-none" />
) }