import {Image, Text, View} from 'react-native'; import React from 'react'; import {styles} from './styles'; import {getBranding} from '../../branding'; const LOGO = '../../assets/GuidanceGif.gif'; const PassportPhotoGuide = () => { return ( {getBranding().images?.card_guidance ? ( ) : ( )} ); }; export default PassportPhotoGuide;