about summary refs log tree commit diff
path: root/src/screens/Messages/Conversation/MessageInput.web.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/screens/Messages/Conversation/MessageInput.web.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/screens/Messages/Conversation/MessageInput.web.tsx')
-rw-r--r--src/screens/Messages/Conversation/MessageInput.web.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Messages/Conversation/MessageInput.web.tsx b/src/screens/Messages/Conversation/MessageInput.web.tsx
index ab57457d7..5ecaad3ae 100644
--- a/src/screens/Messages/Conversation/MessageInput.web.tsx
+++ b/src/screens/Messages/Conversation/MessageInput.web.tsx
@@ -5,7 +5,7 @@ import {useLingui} from '@lingui/react'
 import TextareaAutosize from 'react-textarea-autosize'
 
 import {atoms as a, useTheme} from '#/alf'
-import {Text} from '#/components/Typography'
+import {PaperPlane_Stroke2_Corner0_Rounded as PaperPlane} from '#/components/icons/PaperPlane'
 
 export function MessageInput({
   onSendMessage,
@@ -84,7 +84,7 @@ export function MessageInput({
           a.justify_center,
           {height: 30, width: 30, backgroundColor: t.palette.primary_500},
         ]}>
-        <Text style={a.text_md}>🐴</Text>
+        <PaperPlane fill={t.palette.white} />
       </Pressable>
     </View>
   )