Skip to content

Commit 8053da0

Browse files
committed
icons: Add "three_person.svg" icon for wildcard mentions
The icon is taken from the Zulip Mobile Figma design file: https://www.figma.com/design/1JTNtYo9memgW7vV6d0ygq/Zulip-Mobile?node-id=32-10328&t=Us73OrqbhvtHtSoY-4
1 parent 3575a3b commit 8053da0

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

assets/icons/ZulipIcons.ttf

468 Bytes
Binary file not shown.

assets/icons/three_person.svg

+8
Loading

lib/widgets/icons.dart

+6-3
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,17 @@ abstract final class ZulipIcons {
120120
/// The Zulip custom icon "star_filled".
121121
static const IconData star_filled = IconData(0xf120, fontFamily: "Zulip Icons");
122122

123+
/// The Zulip custom icon "three_person".
124+
static const IconData three_person = IconData(0xf121, fontFamily: "Zulip Icons");
125+
123126
/// The Zulip custom icon "topic".
124-
static const IconData topic = IconData(0xf121, fontFamily: "Zulip Icons");
127+
static const IconData topic = IconData(0xf122, fontFamily: "Zulip Icons");
125128

126129
/// The Zulip custom icon "unmute".
127-
static const IconData unmute = IconData(0xf122, fontFamily: "Zulip Icons");
130+
static const IconData unmute = IconData(0xf123, fontFamily: "Zulip Icons");
128131

129132
/// The Zulip custom icon "user".
130-
static const IconData user = IconData(0xf123, fontFamily: "Zulip Icons");
133+
static const IconData user = IconData(0xf124, fontFamily: "Zulip Icons");
131134

132135
// END GENERATED ICON DATA
133136
}

0 commit comments

Comments
 (0)