import React from 'react' import { settingsHeadingStyle } from '@app/styles/headings' import { GrFormTrash, GrTrash } from 'react-icons/gr' import { Button } from '../general' import { Header3 } from '../general/header' export const RemoveDataView = ({ onRemoveAllWebsitePress, onDeleteAccountPress, }: { onRemoveAllWebsitePress(): Promise onDeleteAccountPress(): Promise }) => { return ( <>
Delete Data

This will remove all websites and associated data except your account.

Delete Account

This will remove all data permanently. Make sure to perform backups.

) }