aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorDominik <dominik.buettner1711@gmail.com>2023-06-15 03:18:34 +0200
committerGitHub <noreply@github.com>2023-06-15 03:18:34 +0200
commit543fdf49431e0a88f5aae6ab54120ac8e43fd8e9 (patch)
tree01547dee7baf334342f9cf1ac581975f325424fb /src/components
parent12253837236b0e7b0ed2a90ef58ff691b7bb9154 (diff)
downloadVencord-543fdf49431e0a88f5aae6ab54120ac8e43fd8e9.tar.gz
Vencord-543fdf49431e0a88f5aae6ab54120ac8e43fd8e9.tar.bz2
Vencord-543fdf49431e0a88f5aae6ab54120ac8e43fd8e9.zip
New Plugin: UnsuppressEmbeds (#1262)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Icons.tsx24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/Icons.tsx b/src/components/Icons.tsx
index 4227fce..91b01dc 100644
--- a/src/components/Icons.tsx
+++ b/src/components/Icons.tsx
@@ -146,3 +146,27 @@ export function OwnerCrownIcon(props: IconProps) {
</Icon>
);
}
+
+export function ImageVisible(props: IconProps) {
+ return (
+ <Icon
+ {...props}
+ className={classes(props.className, "vc-image-visible")}
+ viewBox="0 0 24 24"
+ >
+ <path fill="currentColor" d="M5 21q-.825 0-1.413-.587Q3 19.825 3 19V5q0-.825.587-1.413Q4.175 3 5 3h14q.825 0 1.413.587Q21 4.175 21 5v14q0 .825-.587 1.413Q19.825 21 19 21Zm0-2h14V5H5v14Zm1-2h12l-3.75-5-3 4L9 13Zm-1 2V5v14Z" />
+ </Icon>
+ );
+}
+
+export function ImageInvisible(props: IconProps) {
+ return (
+ <Icon
+ {...props}
+ className={classes(props.className, "vc-image-invisible")}
+ viewBox="0 0 24 24"
+ >
+ <path fill="currentColor" d="m21 18.15-2-2V5H7.85l-2-2H19q.825 0 1.413.587Q21 4.175 21 5Zm-1.2 4.45L18.2 21H5q-.825 0-1.413-.587Q3 19.825 3 19V5.8L1.4 4.2l1.4-1.4 18.4 18.4ZM6 17l3-4 2.25 3 .825-1.1L5 7.825V19h11.175l-2-2Zm7.425-6.425ZM10.6 13.4Z" />
+ </Icon>
+ );
+}