| 1 | import { useFormContext } from "react-hook-form"; |
| 2 | |
| 3 | interface AuthInputProps extends React.InputHTMLAttributes<HTMLInputElement> { |
| 4 | label: string; |
| 5 | name: string; |
| 6 | } |
| 7 | |
| 8 | const AuthInput = ({ label, name, ...rest }: AuthInputProps) => { |
| 9 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected