2024-03-05 10:20:36 +00:00

28 lines
797 B
JavaScript
Executable File

import { Icons } from "components/Icons"
export default {
id: "privacy",
icon: "MdOutlinePrivacyTip",
label: "Privacy",
group: "basic",
settings: [
{
id: "request-data",
group: "privacy.general",
icon: "IoMdDownload",
title: "Request all my data",
description: "Start the process of requesting all your data storaged from our services.",
component: "Button",
props: {
type: "primary",
children: "Request"
},
storaged: false,
},
],
footer: () => {
return <div className="reminder">
<Icons.Info /> Take a look to our <a href="/privacy" target="_blank">privacy policy</a>.
</div>
}
}