Skip to content

Commit 60798a8

Browse files
committed
assets: 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 218ce8c commit 60798a8

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
@@ -111,14 +111,17 @@ abstract final class ZulipIcons {
111111
/// The Zulip custom icon "star_filled".
112112
static const IconData star_filled = IconData(0xf11d, fontFamily: "Zulip Icons");
113113

114+
/// The Zulip custom icon "three_person".
115+
static const IconData three_person = IconData(0xf11e, fontFamily: "Zulip Icons");
116+
114117
/// The Zulip custom icon "topic".
115-
static const IconData topic = IconData(0xf11e, fontFamily: "Zulip Icons");
118+
static const IconData topic = IconData(0xf11f, fontFamily: "Zulip Icons");
116119

117120
/// The Zulip custom icon "unmute".
118-
static const IconData unmute = IconData(0xf11f, fontFamily: "Zulip Icons");
121+
static const IconData unmute = IconData(0xf120, fontFamily: "Zulip Icons");
119122

120123
/// The Zulip custom icon "user".
121-
static const IconData user = IconData(0xf120, fontFamily: "Zulip Icons");
124+
static const IconData user = IconData(0xf121, fontFamily: "Zulip Icons");
122125

123126
// END GENERATED ICON DATA
124127
}

0 commit comments

Comments
 (0)