diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-01 21:49:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 21:49:10 +0100 |
commit | e2556d9f40520f350748ba24bd994b13a788e244 (patch) | |
tree | e8f03b1919f82a40cdf3f60bd317fe9e4f853ff3 /src/screens/Messages/List/index.tsx | |
parent | fc0eab2d03bfbd2ddb2a39b77b83811ae9b4da2d (diff) | |
download | voidsky-e2556d9f40520f350748ba24bd994b13a788e244.tar.zst |
[Clipclops] Replace 🐴 with real icon (#3802)
* replace 🐴 with paper plane icon * replace envelope with plus
Diffstat (limited to 'src/screens/Messages/List/index.tsx')
-rw-r--r-- | src/screens/Messages/List/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Messages/List/index.tsx b/src/screens/Messages/List/index.tsx index 8aa16efd3..3d8723ec6 100644 --- a/src/screens/Messages/List/index.tsx +++ b/src/screens/Messages/List/index.tsx @@ -23,7 +23,7 @@ import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {DialogControlProps, useDialogControl} from '#/components/Dialog' import {NewChat} from '#/components/dms/NewChat' -import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/Envelope' +import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import {SettingsSliderVertical_Stroke2_Corner0_Rounded as SettingsSlider} from '#/components/icons/SettingsSlider' import {Link} from '#/components/Link' import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' @@ -328,7 +328,7 @@ function DesktopHeader({ variant="solid" style={[{height: 'auto', width: 'auto'}, a.px_md, a.py_sm]} onPress={newChatControl.open}> - <ButtonIcon icon={Envelope} position="right" /> + <ButtonIcon icon={Plus} position="right" /> <ButtonText> <Trans>New chat</Trans> </ButtonText> |