Skip to content

Instantly share code, notes, and snippets.

View sakibhossain323's full-sized avatar

Md. Sakib Hossain sakibhossain323

View GitHub Profile
@sakibhossain323
sakibhossain323 / password-input.tsx
Last active March 28, 2025 16:48 — 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 } from "@/components/ui/input";
import { cn } from "@/lib/utils";
const PasswordInput = React.forwardRef<