import React from 'react'; import { SessionModal } from './SessionModal'; import { SessionButton, SessionButtonColor } from './SessionButton'; import { DefaultTheme, withTheme } from 'styled-components'; import { SessionIcon, SessionIconSize, SessionIconType } from './icon'; import { deleteAccount } from '../../util/accountManager'; type Props = { onClose: any; theme: DefaultTheme; }; /* tslint:disable:use-simple-attributes */ const SessionIDResetDialogInner = (props: Props) => { const description = 'We’ve upgraded Session IDs to make them even more private and secure. To ensure your continued privacy you are now required to upgrade.\n\n\ Your existing contacts and conversations will be lost, but you’ll be able to use Session knowing you have the best privacy and security possible.'; return ( null} theme={props.theme} >
{description}
{ void deleteAccount('Session ID Upgrade'); props.onClose(); }} buttonColor={SessionButtonColor.Danger} />
); }; export const SessionIDResetDialog = withTheme(SessionIDResetDialogInner);