/* * Vencord, a Discord client mod * Copyright (c) 2024 Vendicated and contributors * SPDX-License-Identifier: GPL-3.0-or-later */ import "./LinkIconButton.css"; import { MaskedLink, Tooltip } from "@webpack/common"; import { GithubIcon, WebsiteIcon } from ".."; export function GithubLinkIcon() { return ; } export function WebsiteLinkIcon() { return ; } interface Props { text: string; href: string; } function LinkIcon({ text, href, Icon }: Props & { Icon: React.ComponentType; }) { return ( {props => ( )} ); } export const WebsiteButton = (props: Props) => ; export const GithubButton = (props: Props) => ;