blob: a0f7596c53eeaf0ed1b85c5253f4f9eb0f867bfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import React from 'react';
import {Image, StyleSheet} from 'react-native';
import {AuthContext} from '../../routes/authentication';
const PROFILE_DIM = 100;
interface AvatarProps {
style: object;
}
const Avatar: React.FC<AvatarProps> = ({style}) => {
const {avatar} = React.useContext(AuthContext);
return (
<Image
style={[styles.image, style]}
source={
avatar
? {uri: avatar}
: require('../../assets/images/avatar-placeholder.png')
}
/>
);
};
const styles = StyleSheet.create({
image: {
height: PROFILE_DIM,
width: PROFILE_DIM,
borderRadius: PROFILE_DIM / 2,
},
});
export default Avatar;
|