import * as React from "react" import { Eye, EyeOff } from "lucide-react" import { cn } from "@/lib/utils" import { Button } from "./button" interface PasswordInputProps extends React.ComponentProps<"input"> { error?: string } const PasswordInput = React.forwardRef( ({ className, error, ...props }, ref) => { const [showPassword, setShowPassword] = React.useState(false) return (
) } ) PasswordInput.displayName = "PasswordInput" export { PasswordInput }