Skip to content

Commit c1ef7e9

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 8abffef commit c1ef7e9

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

assets/icons/ZulipIcons.ttf

468 Bytes
Binary file not shown.

assets/icons/three_person.svg

+8
Loading

lib/widgets/icons.dart

+10-7
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ abstract final class ZulipIcons {
3030
/// The Zulip custom icon "arrow_right".
3131
static const IconData arrow_right = IconData(0xf102, fontFamily: "Zulip Icons");
3232

33-
/// The Zulip custom icon "at_sign".
34-
static const IconData at_sign = IconData(0xf103, fontFamily: "Zulip Icons");
35-
3633
/// The Zulip custom icon "attach_file".
37-
static const IconData attach_file = IconData(0xf104, fontFamily: "Zulip Icons");
34+
static const IconData attach_file = IconData(0xf103, fontFamily: "Zulip Icons");
35+
36+
/// The Zulip custom icon "at_sign".
37+
static const IconData at_sign = IconData(0xf104, fontFamily: "Zulip Icons");
3838

3939
/// The Zulip custom icon "bot".
4040
static const IconData bot = IconData(0xf105, fontFamily: "Zulip Icons");
@@ -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)