Skip to content

Commit

Permalink
made eye icon smaller and changed the color to match the input border
Browse files Browse the repository at this point in the history
  • Loading branch information
cybertron15 committed Oct 28, 2023
1 parent 205de01 commit b7e01d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
/>
<div className='flex items-center mx-2 cursor-pointer' onClick={() => { setPasswordVisibility(!passwordVisibility) }}>
{passwordVisibility ?
<Eye width={25} height={25} />
<Eye color="#c3c5ca" width={20} height={20} />
:
<EyeOff width={25} height={25} />}
<EyeOff color="#e5e7eb" width={20} height={20} />}
</div>
</div>
)
Expand Down

0 comments on commit b7e01d0

Please sign in to comment.