diff --git a/src/components/GlobalPreferences/Notifications/VerifyEmailAddressPreferences.js b/src/components/GlobalPreferences/Notifications/VerifyEmailAddressPreferences.js new file mode 100644 index 00000000..0ff13039 --- /dev/null +++ b/src/components/GlobalPreferences/Notifications/VerifyEmailAddressPreferences.js @@ -0,0 +1,64 @@ +import React from 'react' +import { Button, GU, textStyle, useTheme, useViewport } from '@aragon/ui' +import emailNotifcationIllustration from '../../../../src/assets/emailNotifications.svg' + +const VerifyEmailAddressPreferences = React.memo( + function VerifyEmailAddressPreferences({ email, onResend }) { + const theme = useTheme() + const { below } = useViewport() + const compact = below('medium') + + return ( +
+
+ +
+

+ Verify your email address +

+ + Almost there! We’ve sent a verification email to{' '} + {email}. Kindly check your inbox and click the link + to verify your account. + + + +
+ ) + } +) + +export default VerifyEmailAddressPreferences