import { useState } from "react"; import { LoginInputProps } from "./Input.types"; export default function LoginInput({ label, type, name, value, errors, onChange, ...restProps }: LoginInputProps) { const [showPassword, setShowPassword] = useState(false); function isPassword() { if (type === "password") { return ( ); } return ""; } return (