mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 12:27:44 +00:00
fix: demo build & upgrades (#2848)
This commit is contained in:
committed by
GitHub
parent
77c38594bb
commit
06ca627a6a
@@ -4,14 +4,14 @@ import { EyeIcon, EyeOffIcon } from "lucide-react";
|
||||
import * as React from "react";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input, type InputProps } from "@/components/ui/input";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
const PasswordInput = ({
|
||||
ref,
|
||||
className,
|
||||
...props
|
||||
}: InputProps & {
|
||||
}: any & {
|
||||
ref: React.RefObject<HTMLInputElement>;
|
||||
}) => {
|
||||
const [showPassword, setShowPassword] = React.useState(false);
|
||||
|
||||
Reference in New Issue
Block a user