/* * Vencord, a modification for Discord's desktop app * Copyright (c) 2023 Vendicated and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import "./iconStyles.css"; import { classes } from "@utils/misc"; import { i18n } from "@webpack/common"; import type { PropsWithChildren, SVGProps } from "react"; interface BaseIconProps extends IconProps { viewBox: string; } interface IconProps extends SVGProps { className?: string; height?: string | number; width?: string | number; } function Icon({ height = 24, width = 24, className, children, viewBox, ...svgProps }: PropsWithChildren) { return ( {children} ); } /** * Discord's link icon, as seen in the Message context menu "Copy Message Link" option */ export function LinkIcon({ height = 24, width = 24, className }: IconProps) { return ( ); } /** * Discord's copy icon, as seen in the user popout right of the username when clicking * your own username in the bottom left user panel */ export function CopyIcon(props: IconProps) { return ( ); } /** * Discord's open external icon, as seen in the user profile connections */ export function OpenExternalIcon(props: IconProps) { return ( ); } export function ImageIcon(props: IconProps) { return ( ); } export function InfoIcon(props: IconProps) { return ( ); } export function OwnerCrownIcon(props: IconProps) { return ( ); } /** * Discord's screenshare icon, as seen in the connection panel */ export function ScreenshareIcon(props: IconProps) { return ( ); } export function ImageVisible(props: IconProps) { return ( ); } export function ImageInvisible(props: IconProps) { return ( ); } export function Microphone(props: IconProps) { return ( ); } export function CogWheel(props: IconProps) { return ( ); } export function ReplyIcon(props: IconProps) { return ( ); } export function DeleteIcon(props: IconProps) { return ( ); }