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 ( +