43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
import * as React from "react"
|
|
|
|
import { cn } from "~/utils"
|
|
import { EyeOpenIcon, EyeNoneIcon } from "@radix-ui/react-icons"
|
|
|
|
export interface InputProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
({ className, type, ...props }, ref) => {
|
|
const [showPassword, setShowPassword] = React.useState<boolean>(false)
|
|
const [mask, setMask] = React.useState<boolean>(false)
|
|
const toggleShowPassword = () => {
|
|
setShowPassword((show) => !show)
|
|
setMask((mask) => !mask)
|
|
}
|
|
return (
|
|
<div className="relative">
|
|
<input
|
|
type={type && !mask ? type : "text"}
|
|
className={cn(
|
|
"flex h-14 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-input-placeholder focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
|
className
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
{type === "password" ? <button
|
|
type="button"
|
|
className="absolute right-4 top-5 text-input"
|
|
onClick={toggleShowPassword}
|
|
onKeyDown={toggleShowPassword}
|
|
>
|
|
{showPassword ? <EyeOpenIcon /> : <EyeNoneIcon />}
|
|
</button> : null}
|
|
</div>
|
|
)
|
|
}
|
|
)
|
|
Input.displayName = "Input"
|
|
|
|
export { Input }
|