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.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/Icons.tsx b/src/components/Icons.tsx
index 26364fc..93b1323 100644
--- a/src/components/Icons.tsx
+++ b/src/components/Icons.tsx
@@ -236,3 +236,22 @@ export function ReplyIcon(props: IconProps) {
</Icon>
);
}
+
+export function DeleteIcon(props: IconProps) {
+ return (
+ <Icon
+ {...props}
+ className={classes(props.className, "vc-delete-icon")}
+ viewBox="0 0 24 24"
+ >
+ <path
+ fill="currentColor"
+ d="M15 3.999V2H9V3.999H3V5.999H21V3.999H15Z"
+ />
+ <path
+ fill="currentColor"
+ d="M5 6.99902V18.999C5 20.101 5.897 20.999 7 20.999H17C18.103 20.999 19 20.101 19 18.999V6.99902H5ZM11 17H9V11H11V17ZM15 17H13V11H15V17Z"
+ />
+ </Icon>
+ );
+}