mobile: fix signup input secure entry icon

This commit is contained in:
Ammar Ahmed
2026-06-06 11:36:07 +05:00
committed by Abdullah Atta
parent afc8b9f5f7
commit e895b64bee

View File

@@ -386,7 +386,8 @@ export function FormInput({
>
{secureTextEntry && (
<IconButton
name="eye"
name={secureEntry ? "eye-closed" : "eye-open"}
iconFamily="notesnook"
size={20}
top={10}
bottom={10}
@@ -398,9 +399,7 @@ export function FormInput({
width: 25,
marginLeft: 5
}}
color={
secureEntry ? colors.secondary.icon : colors.primary.accent
}
color={colors.primary.icon}
/>
)}