import React, {Fragment} from 'react'; import {Image, StyleSheet, Text} from 'react-native'; import {TaggPrompt} from '../common'; export const InviteFriendsPrompt: React.FC = () => { return ( {}} /> ); }; export const PrivateAccountsPrompt: React.FC = () => { return ( {}} /> ); }; interface SPPromptNotificationProps { showSPNotifyPopUp: boolean; } export const SPPromptNotification: React.FC = ({ showSPNotifyPopUp, }) => { return showSPNotifyPopUp ? ( A new page where you can discover new profiles. Just press the new{' '} button on the tab bar to check it out! } logoType={'tagg'} hideCloseButton={true} noPadding={true} onClose={() => {}} /> ) : ( ); }; const styles = StyleSheet.create({ icon: { width: 20, height: 20, tintColor: 'grey', }, });