diff options
author | brian-tagg <brian@tagg.id> | 2021-05-07 15:21:43 -0700 |
---|---|---|
committer | brian-tagg <brian@tagg.id> | 2021-05-07 15:21:43 -0700 |
commit | 9a890f1d9795f4ff071d50ea5863b80811f840ec (patch) | |
tree | 0498b9f160f12ea998a3326bba77a751b38cf4b1 /src/components/notifications | |
parent | caac607ed90c35ad8d4b2787b170e1fd1f165333 (diff) |
Changes to make messaging update top notification
Diffstat (limited to 'src/components/notifications')
-rw-r--r-- | src/components/notifications/NotificationPrompts.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/notifications/NotificationPrompts.tsx b/src/components/notifications/NotificationPrompts.tsx index 386b45e6..0fb580e6 100644 --- a/src/components/notifications/NotificationPrompts.tsx +++ b/src/components/notifications/NotificationPrompts.tsx @@ -32,6 +32,21 @@ export const PrivateAccountsPrompt: React.FC = () => { ); }; +export const NewChatPrompt: React.FC = () => { + const handWaveRegex = `\u{1F44B}` + const message = `Introducing messaging, another way to engage with\nfriends on campus! Send a ${handWaveRegex} to a friend now!` + return ( + <TaggPrompt + messageHeader={'Chat!'} + messageBody={message} + logoType={'chat'} + hideCloseButton={true} + noPadding={true} + onClose={() => {}} + /> + ); +}; + interface SPPromptNotificationProps { showSPNotifyPopUp: boolean; } |