import React from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {atoms as a, useTheme} from '#/alf' import {DialogOuterProps} from '#/components/Dialog' import {Divider} from '#/components/Divider' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' export function DeactivateAccountDialog({ control, }: { control: DialogOuterProps['control'] }) { const t = useTheme() const {_} = useLingui() return ( {_(msg`Deactivate account`)} Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in. There is no time limit for account deactivation, come back any time. If you're trying to change your handle or email, do so before you deactivate. {}} color="negative" /> ) }