mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
fix: update icon sizes
Signed-off-by: Adithya Krishna <adikrish@redhat.com>
This commit is contained in:
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user