Remove NotesSearcher, SkypeStartupSound, VoiceChannelLog & VoiceJoinMessages

Removed plugins will be put in a dedicated directory from now on.
This commit is contained in:
RobinRMC 2024-09-07 00:41:03 +02:00
parent 5542391c7c
commit 9d150b6c69
No known key found for this signature in database
GPG key ID: AC6D1EDC9ADED07B
19 changed files with 98 additions and 98 deletions

View file

@ -1,25 +0,0 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { LazyComponent } from "@utils/react";
import { findExportedComponentLazy } from "@webpack";
import { React } from "@webpack/common";
import { NotesDataIcon } from "./Icons";
import { openNotesDataModal } from "./NotesDataModal";
const HeaderBarIcon = findExportedComponentLazy("Icon", "Divider");
export const OpenNotesDataButton = LazyComponent(() => React.memo(() => {
return (
<HeaderBarIcon
className="vc-notes-searcher-toolbox-button"
onClick={() => openNotesDataModal()}
tooltip={"View Notes"}
icon={NotesDataIcon}
/>
);
}));