mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 12:32:34 +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)}
|
onClick={() => setShowPassword((showPassword) => !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>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
@ -140,9 +140,9 @@ export const PasswordForm = ({ className }: PasswordFormProps) => {
|
|||||||
onClick={() => setShowConfirmPassword((showConfirmPassword) => !showConfirmPassword)}
|
onClick={() => setShowConfirmPassword((showConfirmPassword) => !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>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -115,9 +115,9 @@ export const SignInForm = ({ className }: SignInFormProps) => {
|
|||||||
onClick={() => setShowPassword((showPassword) => !showPassword)}
|
onClick={() => setShowPassword((showPassword) => !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>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -121,9 +121,9 @@ export const SignUpForm = ({ className }: SignUpFormProps) => {
|
|||||||
onClick={() => setShowPassword((showPassword) => !showPassword)}
|
onClick={() => setShowPassword((showPassword) => !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>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user