From 543fdf49431e0a88f5aae6ab54120ac8e43fd8e9 Mon Sep 17 00:00:00 2001 From: Dominik Date: Thu, 15 Jun 2023 03:18:34 +0200 Subject: New Plugin: UnsuppressEmbeds (#1262) Co-authored-by: V --- src/components/Icons.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/components') 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) { ); } + +export function ImageVisible(props: IconProps) { + return ( + + + + ); +} + +export function ImageInvisible(props: IconProps) { + return ( + + + + ); +} -- cgit