/* * Vencord, a Discord client mod * Copyright (c) 2024 Vendicated and contributors * SPDX-License-Identifier: GPL-3.0-or-later */ import { LazyComponent } from "@utils/lazyReact"; import { React } from "@webpack/common"; export const NotesDataIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const SaveIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const DeleteIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const RefreshIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const PopupIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const CrossIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const ProblemIcon = LazyComponent(() => React.memo(() => { return ( ); })); export const SuccessIcon = LazyComponent(() => React.memo(() => { return ( ); }));