From b6dd9579009a28d0a467c868ba18b6dd05d512f5 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 14 Feb 2024 14:49:33 -0800 Subject: [PATCH] add times icon --- assets/icons/timesLarge_stroke2_corner0_rounded.svg | 1 + src/components/icons/Times.tsx | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 assets/icons/timesLarge_stroke2_corner0_rounded.svg create mode 100644 src/components/icons/Times.tsx diff --git a/assets/icons/timesLarge_stroke2_corner0_rounded.svg b/assets/icons/timesLarge_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..68403f5984 --- /dev/null +++ b/assets/icons/timesLarge_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/icons/Times.tsx b/src/components/icons/Times.tsx new file mode 100644 index 0000000000..3802a21202 --- /dev/null +++ b/src/components/icons/Times.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const PlusLarge_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M4.293 4.293a1 1 0 0 1 1.414 0L12 10.586l6.293-6.293a1 1 0 1 1 1.414 1.414L13.414 12l6.293 6.293a1 1 0 0 1-1.414 1.414L12 13.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L10.586 12 4.293 5.707a1 1 0 0 1 0-1.414Z', +})