From c062f9bdeb1eef02a2fc8b2c2411b715d727336f Mon Sep 17 00:00:00 2001 From: V Date: Sat, 13 May 2023 23:47:13 +0200 Subject: SpotifyControls: Add context menu icons --- src/components/Icons.tsx | 33 +++++++++++++++++++++++++++++++++ src/components/iconStyles.css | 3 +++ 2 files changed, 36 insertions(+) create mode 100644 src/components/iconStyles.css (limited to 'src/components') diff --git a/src/components/Icons.tsx b/src/components/Icons.tsx index c3905d9..d1cc7a6 100644 --- a/src/components/Icons.tsx +++ b/src/components/Icons.tsx @@ -16,6 +16,8 @@ * along with this program. If not, see . */ +import "./iconStyles.css"; + import { classes } from "@utils/misc"; import type { PropsWithChildren } from "react"; @@ -81,3 +83,34 @@ export function CopyIcon(props: IconProps) { ); } + +/** + * Discord's open external icon, as seen in the user profile connections + */ +export function OpenExternalIcon(props: IconProps) { + return ( + + + + ); +} + +export function ImageIcon(props: IconProps) { + return ( + + + + ); +} diff --git a/src/components/iconStyles.css b/src/components/iconStyles.css new file mode 100644 index 0000000..9f2ef8e --- /dev/null +++ b/src/components/iconStyles.css @@ -0,0 +1,3 @@ +.vc-open-external-icon { + transform: rotate(45deg); +} -- cgit