fix: demo build & upgrades (#2848)

This commit is contained in:
KinfeMichael Tariku
2025-05-31 00:22:02 -07:00
committed by GitHub
parent 77c38594bb
commit 06ca627a6a
26 changed files with 10418 additions and 16051 deletions

View File

@@ -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);