mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-01 01:24:51 +02:00
53 lines
2.1 KiB
TypeScript
53 lines
2.1 KiB
TypeScript
import * as React from "react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
import { EyeOff, Eye } from "lucide-react";
|
|
|
|
export type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
({ className, type, ...props }, ref) => {
|
|
const [showPassword, setShowPassword] = React.useState(false);
|
|
const togglePasswordVisibility = () => setShowPassword(!showPassword);
|
|
|
|
console.log("type", type);
|
|
|
|
return (
|
|
<div className="relative">
|
|
<input
|
|
type={
|
|
type === "password"
|
|
? showPassword
|
|
? "text"
|
|
: "password"
|
|
: type
|
|
}
|
|
className={cn(
|
|
"flex h-9 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
|
|
className
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
{type === "password" && (
|
|
<div className="absolute inset-y-0 right-0 flex cursor-pointer items-center pr-3 text-gray-400">
|
|
{showPassword ? (
|
|
<EyeOff
|
|
className="h-4 w-4"
|
|
onClick={togglePasswordVisibility}
|
|
/>
|
|
) : (
|
|
<Eye
|
|
className="h-4 w-4"
|
|
onClick={togglePasswordVisibility}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
Input.displayName = "Input";
|
|
|
|
export { Input };
|