about summary refs log tree commit diff
path: root/src/components/dms/NewChat.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-05-01 21:49:10 +0100
committerGitHub <noreply@github.com>2024-05-01 21:49:10 +0100
commite2556d9f40520f350748ba24bd994b13a788e244 (patch)
treee8f03b1919f82a40cdf3f60bd317fe9e4f853ff3 /src/components/dms/NewChat.tsx
parentfc0eab2d03bfbd2ddb2a39b77b83811ae9b4da2d (diff)
downloadvoidsky-e2556d9f40520f350748ba24bd994b13a788e244.tar.zst
[Clipclops] Replace 🐴 with real icon (#3802)
* replace 🐴 with paper plane icon

* replace envelope with plus
Diffstat (limited to 'src/components/dms/NewChat.tsx')
-rw-r--r--src/components/dms/NewChat.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/dms/NewChat.tsx b/src/components/dms/NewChat.tsx
index 55285daed..a6b5d5632 100644
--- a/src/components/dms/NewChat.tsx
+++ b/src/components/dms/NewChat.tsx
@@ -18,8 +18,8 @@ import {atoms as a, useTheme, web} from '#/alf'
 import * as Dialog from '#/components/Dialog'
 import * as TextField from '#/components/forms/TextField'
 import {MagnifyingGlass2_Stroke2_Corner0_Rounded as Search} from '#/components/icons/MagnifyingGlass2'
+import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
 import {Button} from '../Button'
-import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '../icons/Envelope'
 import {ListMaybePlaceholder} from '../Lists'
 import {Text} from '../Typography'
 
@@ -54,7 +54,7 @@ export function NewChat({
       <FAB
         testID="newChatFAB"
         onPress={control.open}
-        icon={<Envelope size="xl" fill={t.palette.white} />}
+        icon={<Plus size="lg" fill={t.palette.white} />}
         accessibilityRole="button"
         accessibilityLabel={_(msg`New chat`)}
         accessibilityHint=""