This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://github.com/sensortower/daterangepicker" target="_blank"> | |
Datetime picker with extended options(required knockoutjs)</a> |