1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-25 11:42:30 +01:00

add invite context menu icon

This commit is contained in:
Puyodead1 2023-08-30 20:44:19 -04:00
parent 1605f82251
commit c9b0a79039
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC
2 changed files with 6 additions and 0 deletions

View File

@ -65,6 +65,9 @@ function ChannelListItem({ guild, channel, isCategory, active }: Props) {
onClick: () => {
openModal(CreateInviteModal, { guild_id: guild.id, channel_id: channel.id });
},
iconProps: {
icon: "mdiAccountPlus",
},
},
]);

View File

@ -68,6 +68,9 @@ function GuildItem(props: Props) {
onClick: () => {
openModal(CreateInviteModal, { guild_id: guild.id });
},
iconProps: {
icon: "mdiAccountPlus",
},
},
]);