import React from 'react'; import {Image, StyleSheet} from 'react-native'; import {AuthContext, ProfileContext} from '../../routes/'; const PROFILE_DIM = 100; interface AvatarProps { style: object; isProfileView: boolean; } const Avatar: React.FC = ({style, isProfileView}) => { const {avatar} = isProfileView ? React.useContext(ProfileContext) : React.useContext(AuthContext); return ( ); }; const styles = StyleSheet.create({ image: { height: PROFILE_DIM, width: PROFILE_DIM, borderRadius: PROFILE_DIM / 2, }, }); export default Avatar;