aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/NotificationPrompts.tsx
diff options
context:
space:
mode:
authorShravya Ramesh <37447613+shravyaramesh@users.noreply.github.com>2021-03-30 12:30:15 -0700
committerGitHub <noreply@github.com>2021-03-30 12:30:15 -0700
commit6b3ab4ccb9112e469f2333285c4e58a8c934cff3 (patch)
tree84b4b9a6fa04cff39fb9e3bdf0ebe29910d08e0f /src/components/notifications/NotificationPrompts.tsx
parent357ac758abf9a2a2364b265051743bbbc50893a6 (diff)
parent6250ae2a6936bdb8e4b1cca538640fbb0d8c4c48 (diff)
Merge branch 'master' into tma718-move-invite-friends
Diffstat (limited to 'src/components/notifications/NotificationPrompts.tsx')
-rw-r--r--src/components/notifications/NotificationPrompts.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/notifications/NotificationPrompts.tsx b/src/components/notifications/NotificationPrompts.tsx
index dc27925b..386b45e6 100644
--- a/src/components/notifications/NotificationPrompts.tsx
+++ b/src/components/notifications/NotificationPrompts.tsx
@@ -17,6 +17,21 @@ export const InviteFriendsPrompt: React.FC = () => {
);
};
+export const PrivateAccountsPrompt: React.FC = () => {
+ return (
+ <TaggPrompt
+ messageHeader={'Private or Public!'}
+ messageBody={
+ 'You can now choose to make your account private!\nHead over to the privacy tab in settings to check it out'
+ }
+ logoType={'private_accounts'}
+ hideCloseButton={true}
+ noPadding={true}
+ onClose={() => {}}
+ />
+ );
+};
+
interface SPPromptNotificationProps {
showSPNotifyPopUp: boolean;
}