about summary refs log tree commit diff
path: root/src/components/icons
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/icons')
-rw-r--r--src/components/icons/ArrowBoxLeft.tsx5
-rw-r--r--src/components/icons/PaperPlane.tsx5
-rw-r--r--src/components/icons/Plus.tsx4
3 files changed, 14 insertions, 0 deletions
diff --git a/src/components/icons/ArrowBoxLeft.tsx b/src/components/icons/ArrowBoxLeft.tsx
new file mode 100644
index 000000000..011bf6afa
--- /dev/null
+++ b/src/components/icons/ArrowBoxLeft.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const ArrowBoxLeft_Stroke2_Corner0_Rounded = createSinglePathSVG({
+  path: 'M3.293 3.293A1 1 0 0 1 4 3h7.25a1 1 0 1 1 0 2H5v14h6.25a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1V4a1 1 0 0 1 .293-.707Zm11.5 3.5a1 1 0 0 1 1.414 0l4.5 4.5a1 1 0 0 1 0 1.414l-4.5 4.5a1 1 0 0 1-1.414-1.414L17.586 13H8.75a1 1 0 1 1 0-2h8.836l-2.793-2.793a1 1 0 0 1 0-1.414Z',
+})
diff --git a/src/components/icons/PaperPlane.tsx b/src/components/icons/PaperPlane.tsx
new file mode 100644
index 000000000..eef38638c
--- /dev/null
+++ b/src/components/icons/PaperPlane.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const PaperPlane_Stroke2_Corner0_Rounded = createSinglePathSVG({
+  path: 'M3.374 3.22a1 1 0 0 1 1.073-.114l16 8a1 1 0 0 1 0 1.788l-16 8a1 1 0 0 1-1.417-1.136L4.97 12 3.03 4.243a1 1 0 0 1 .344-1.023ZM6.781 13l-1.284 5.133L17.764 12 5.497 5.867 6.781 11H9a1 1 0 1 1 0 2H6.78Z',
+})
diff --git a/src/components/icons/Plus.tsx b/src/components/icons/Plus.tsx
index d0698f7f4..71bcee533 100644
--- a/src/components/icons/Plus.tsx
+++ b/src/components/icons/Plus.tsx
@@ -3,3 +3,7 @@ import {createSinglePathSVG} from './TEMPLATE'
 export const PlusLarge_Stroke2_Corner0_Rounded = createSinglePathSVG({
   path: 'M12 3a1 1 0 0 1 1 1v7h7a1 1 0 1 1 0 2h-7v7a1 1 0 1 1-2 0v-7H4a1 1 0 1 1 0-2h7V4a1 1 0 0 1 1-1Z',
 })
+
+export const PlusSmall_Stroke2_Corner0_Rounded = createSinglePathSVG({
+  path: 'M12 6a1 1 0 0 1 1 1v4h4a1 1 0 1 1 0 2h-4v4a1 1 0 1 1-2 0v-4H7a1 1 0 1 1 0-2h4V7a1 1 0 0 1 1-1Z',
+})