/* * 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 type { PropsWithChildren } from "react"; interface BaseIconProps extends IconProps { viewBox: string; } interface IconProps { className?: string; height?: number; width?: number; } function Icon({ height = 24, width = 24, className, children, viewBox }: PropsWithChildren) { return ( ); } /** * 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 ( ); }