import { useState } from 'react'; /** * PasswordInput — a password field with an inline show/hide toggle. * Accepts all standard props plus className/style on the wrapper. * Usage: * setPw(e.target.value)} /> */ export default function PasswordInput({ className, style, wrapperStyle, ...inputProps }) { const [show, setShow] = useState(false); return (
); }