diff options
author | Hailey <me@haileyok.com> | 2024-10-07 11:15:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 11:15:17 -0700 |
commit | 58b1d9326d7f5f308746e2471f5a7552bb0db250 (patch) | |
tree | 5e7a2d671ce4e4a010a1c967711cfd7fa9ec0c7d /src/components/icons | |
parent | 8d80f1344df4897cfe4f754d37e654809850b794 (diff) | |
download | voidsky-58b1d9326d7f5f308746e2471f5a7552bb0db250.tar.zst |
Swipeable to delete chat, custom swipeable (#5614)
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/components/icons')
-rw-r--r-- | src/components/icons/EnveopeOpen.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/icons/EnveopeOpen.tsx b/src/components/icons/EnveopeOpen.tsx new file mode 100644 index 000000000..2873e8913 --- /dev/null +++ b/src/components/icons/EnveopeOpen.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Envelope_Open_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M4 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v6.386c1.064-.002 2 .86 2 2.001V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.613c0-1.142.936-2.003 2-2.001V4Zm2 6.946 6 2 6-2V4H6v6.946ZM9 8a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm2.367 6.843L4 12.387V19h16v-6.613l-7.367 2.456a2 2 0 0 1-1.265 0Z', +}) |