fix: update icon sizes

Signed-off-by: Adithya Krishna <adikrish@redhat.com>
This commit is contained in:
Adithya Krishna
2023-08-26 20:52:07 +05:30
committed by Mythie
parent c902fb8412
commit d0def823c8
3 changed files with 8 additions and 8 deletions

View File

@ -109,9 +109,9 @@ export const PasswordForm = ({ className }: PasswordFormProps) => {
onClick={() => setShowPassword((showPassword) => !showPassword)}
>
{showPassword ? (
<EyeOff className="text-slate-500" />
<EyeOff className="h-5 w-5 text-slate-500" />
) : (
<Eye className="text-slate-500" />
<Eye className="h-5 w-5 text-slate-500" />
)}
</Button>
</div>
@ -140,9 +140,9 @@ export const PasswordForm = ({ className }: PasswordFormProps) => {
onClick={() => setShowConfirmPassword((showConfirmPassword) => !showConfirmPassword)}
>
{showConfirmPassword ? (
<EyeOff className="text-slate-500" />
<EyeOff className="h-5 w-5 text-slate-500" />
) : (
<Eye className="text-slate-500" />
<Eye className="h-5 w-5 text-slate-500" />
)}
</Button>
</div>

View File

@ -115,9 +115,9 @@ export const SignInForm = ({ className }: SignInFormProps) => {
onClick={() => setShowPassword((showPassword) => !showPassword)}
>
{showPassword ? (
<EyeOff className="text-slate-500" />
<EyeOff className="h-5 w-5 text-slate-500" />
) : (
<Eye className="text-slate-500" />
<Eye className="h-5 w-5 text-slate-500" />
)}
</Button>
</div>

View File

@ -121,9 +121,9 @@ export const SignUpForm = ({ className }: SignUpFormProps) => {
onClick={() => setShowPassword((showPassword) => !showPassword)}
>
{showPassword ? (
<EyeOff className="text-slate-500" />
<EyeOff className="h-5 w-5 text-slate-500" />
) : (
<Eye className="text-slate-500" />
<Eye className="h-5 w-5 text-slate-500" />
)}
</Button>
</div>