diff --git a/src/components/ChannelListItem.tsx b/src/components/ChannelListItem.tsx index c212f5a..db5c7cc 100644 --- a/src/components/ChannelListItem.tsx +++ b/src/components/ChannelListItem.tsx @@ -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", + }, }, ]); diff --git a/src/components/GuildItem.tsx b/src/components/GuildItem.tsx index 456f3bc..73d1563 100644 --- a/src/components/GuildItem.tsx +++ b/src/components/GuildItem.tsx @@ -68,6 +68,9 @@ function GuildItem(props: Props) { onClick: () => { openModal(CreateInviteModal, { guild_id: guild.id }); }, + iconProps: { + icon: "mdiAccountPlus", + }, }, ]);