about summary refs log tree commit diff
path: root/src/components/icons/BulletList.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-05-10 10:42:45 -0500
committerGitHub <noreply@github.com>2024-05-10 10:42:45 -0500
commit8f56f79c6c94a7adf1de304097067f5aed0a111a (patch)
treee5ffc40892986329385ba60d0d2836ae2e0069fc /src/components/icons/BulletList.tsx
parentd7f3a8d01fffafac0841bcb732bff0d4a7e53f01 (diff)
downloadvoidsky-8f56f79c6c94a7adf1de304097067f5aed0a111a.tar.zst
[🐴] Change up icons (#3938)
* Swap for chat icon

* Replace icons in left nav

* Replace icons in bottom bars

* Ditch feeds, drop size

* Fine tune

* Swap bell icon, improve alignment and size
Diffstat (limited to 'src/components/icons/BulletList.tsx')
-rw-r--r--src/components/icons/BulletList.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/icons/BulletList.tsx b/src/components/icons/BulletList.tsx
new file mode 100644
index 000000000..58847d9d9
--- /dev/null
+++ b/src/components/icons/BulletList.tsx
@@ -0,0 +1,9 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const BulletList_Stroke2_Corner0_Rounded = createSinglePathSVG({
+  path: 'M6 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM3 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm9 0a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm-6 9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-3 1a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm9 0a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Z',
+})
+
+export const BulletList_Filled_Corner0_Rounded = createSinglePathSVG({
+  path: 'M3 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm0 10a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm10-1a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2h-7Zm-1-9a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Z',
+})