Skip to content

Instantly share code, notes, and snippets.

View Shivraj-K09's full-sized avatar
🎯
Focusing

Shivraj K Shivraj-K09

🎯
Focusing
View GitHub Profile
@Shivraj-K09
Shivraj-K09 / password-input.tsx
Created September 29, 2024 07:03 — forked from mjbalcueva/password-input.tsx
shadcn ui custom password input
'use client'
import * as React from 'react'
import { EyeIcon, EyeOffIcon } from 'lucide-react'
import { Button } from '@/components/ui/button'
import { Input, type InputProps } from '@/components/ui/input'
import { cn } from '@/lib/utils'
const PasswordInput = React.forwardRef<HTMLInputElement, InputProps>(({ className, ...props }, ref) => {