Showhide Pass
Showhide Pass is a React and Tailwind CSS component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
other
What it is
Showhide Pass is a React and Tailwind CSS component from UI Layouts, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i lucide-react
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Showhide Pass
'use client';
import { Eye, EyeOff } from 'lucide-react';
import { useState } from 'react';
const PasswordInput = () => {
const [isVisible, setIsVisible] = useState(false);
return (
<div className='w-96 mx-auto py-14'>
<label htmlFor='pass' className='text-sm font-normal'>
Password
</label>
<div className='relative mt-1'>
<input
type={isVisible ? 'text' : 'password'}
id='pass'
placeholder='Password'
className='dark:bg-neutral-950 bg-neutral-50 w-full outline-hidden focus-within:border-blue-700 rounded-md p-2 border-2 '
/>
<div
className='absolute top-3 right-4 text-2xl text-neutral-500 cursor-pointer'
onClick={() => setIsVisible((prev) => !prev)}
>
{isVisible ? <Eye size={22} /> : <EyeOff size={22} />}
</div>
</div>
</div>
);
};
export default PasswordInput;