NTP-8231 | RN Error Screen (#13193)

This commit is contained in:
Prajjaval Verma
2024-10-24 11:52:11 +05:30
committed by GitHub
parent 86e0fe2d66
commit 722ea0a17c
21 changed files with 127 additions and 125 deletions

View File

@@ -40,7 +40,10 @@ export const StaticHeader = ({
}}
activeOpacity={1}
>
{AppImage(leftIcon || ImageName.CROSS, styles.leftImageStyle)}
<AppImage
imageCode={leftIcon || ImageName.CROSS}
style={styles.leftImageStyle}
/>
</TouchableOpacity>
)}
{!!rightIconCta && (
@@ -50,7 +53,10 @@ export const StaticHeader = ({
}}
activeOpacity={1}
>
{AppImage(rightIcon || ImageName.HELP, styles.rightImageStyle)}
<AppImage
imageCode={rightIcon || ImageName.HELP}
style={styles.rightImageStyle}
/>
</TouchableOpacity>
)}
</View>