// import { EyeIcon, EyeOffIcon } from 'lucide-react' import { useState, type Dispatch, type SetStateAction } from 'react' import { EyeIcon } from '~/components/icons/eye' import { Button } from '~/components/ui/button' type TProperties = { setIsRegisterOpen: Dispatch> setIsLoginOpen: Dispatch> setIsForgetOpen: Dispatch> } export const FormLogin = (properties: TProperties) => { const { setIsRegisterOpen, setIsLoginOpen, setIsForgetOpen } = properties const [showPassword, setShowPassword] = useState(false) return (
{/* Input Email / No Telepon */}
{/* Input Password */}
{/* Lupa Kata Sandi */}
Lupa Kata Sandi?
{/* Tombol Masuk */}
{/* Link Daftar */}
Belum punya akun?{' '}
) }