"use client"; import * as React from "react"; import { Eye, EyeOff } from "lucide-react"; import { Input } from "@/components/ui/input"; import { cn } from "@/lib/utils"; export const PasswordInput = React.forwardRef, "type"> & { invalid?: boolean }>(function PasswordInput( { className, invalid, ...props }, ref, ) { const [show, setShow] = React.useState(false); return (
); });