aboutsummaryrefslogtreecommitdiff
path: root/src/components/Icons.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Icons.tsx')
-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>
+ );
+}