flip the icons for consistent UX (#1100)

This commit is contained in:
Ben Allen 2024-04-23 10:46:27 -04:00 committed by GitHub
parent d41b2e14f1
commit 255f97a2b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1061,10 +1061,10 @@ function PasswordHider ({ onClick, showPass }) {
onClick={onClick} onClick={onClick}
> >
{!showPass {!showPass
? <EyeClose ? <Eye
fill='var(--bs-body-color)' height={20} width={20} fill='var(--bs-body-color)' height={20} width={20}
/> />
: <Eye : <EyeClose
fill='var(--bs-body-color)' height={20} width={20} fill='var(--bs-body-color)' height={20} width={20}
/>} />}
</InputGroup.Text> </InputGroup.Text>