Skip to content

Instantly share code, notes, and snippets.

View webtamizhan's full-sized avatar
📚
building amazing

Prabakaran T webtamizhan

📚
building amazing
View GitHub Profile
@webtamizhan
webtamizhan / AmazonPasswordField.tsx
Created November 25, 2024 15:52
Shadcn ui - Amazon Like Password Field
import React, { useState } from "react";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export const AmazonPasswordField = React.forwardRef<
HTMLInputElement,
React.InputHTMLAttributes<HTMLInputElement>
>(({ className, ...props }, ref) => {
const [password, setPassword] = useState<string>("");
const [showPassword, setShowPassword] = useState<boolean>(false);
@webtamizhan
webtamizhan / plugins.html
Created July 15, 2020 06:13
List of useful JS plugins
<a href="https://github.com/sensortower/daterangepicker" target="_blank">
Datetime picker with extended options(required knockoutjs)</a>