import React, { useState } from 'react'; import { Eye, EyeOff } from 'lucide-react'; export const Field: React.FC & { label: string }> = ({ label, ...props }) => ( ); export const PasswordField: React.FC & { label: string }> = ({ label, ...props }) => { const [visible, setVisible] = useState(false); return ( ); };