import { EyeIcon, EyeOffIcon } from "lucide-react" import React from "react" import { Button } from "../ui/button" import { Input } from "../ui/input" export function PasswordInput(props: React.ComponentProps<"input">) { const [showPassword, setShowPassword] = React.useState(false) const disabled = props.value === '' || props.value === undefined || props.disabled return (