|
@@ -31,6 +31,7 @@ import TickIcon from '../../../../assets/icons/tick.svg';
|
|
|
import UNIcon from '../../../../assets/icons/un_icon.svg';
|
|
|
import NMIcon from '../../../../assets/icons/nm_icon.svg';
|
|
|
import ChevronIcon from '../../../../assets/icons/chevron-left.svg';
|
|
|
+import ShareIcon from '../../../../assets/icons/share.svg';
|
|
|
|
|
|
import { ProfileStyles, ScoreStyles, TBTStyles } from '../TravellersScreen/Components/styles';
|
|
|
import UnauthenticatedProfileScreen from './UnauthenticatedProfileScreen';
|
|
@@ -260,7 +261,7 @@ const ProfileScreen: FC<Props> = ({ navigation, route }) => {
|
|
|
{data.own_profile === 1 ? (
|
|
|
<>
|
|
|
<TouchableOpacity
|
|
|
- style={[styles.settings, { backgroundColor: 'red', right: 30 }]}
|
|
|
+ style={[styles.settings, { right: 25 }]}
|
|
|
onPress={() =>
|
|
|
navigation.navigate(NAVIGATION_PAGES.SHARE_PROFILE, {
|
|
|
data: {
|
|
@@ -278,8 +279,14 @@ const ProfileScreen: FC<Props> = ({ navigation, route }) => {
|
|
|
})
|
|
|
}
|
|
|
>
|
|
|
- <Text style={{ color: 'white' }}>Share</Text>
|
|
|
+ <ShareIcon
|
|
|
+ width={20}
|
|
|
+ height={20}
|
|
|
+ fill={Colors.DARK_BLUE}
|
|
|
+ style={{ alignSelf: 'center' }}
|
|
|
+ />
|
|
|
</TouchableOpacity>
|
|
|
+
|
|
|
<TouchableOpacity
|
|
|
style={styles.settings}
|
|
|
onPress={() => navigation.navigate(NAVIGATION_PAGES.EDIT_PERSONAL_INFO)}
|