Skip to content

Commit 845987f

Browse files
committed
icons: Add group_dm custom icon, for recent-DMs screen
Made by Vlad for mobile. This is the SVG file Vlad shared on CZO: https://chat.zulip.org/#narrow/stream/243-mobile-team/topic/design.3A.20DM-conversation.20list/near/1594671 Related: zulip#119
1 parent 3cba058 commit 845987f

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

assets/icons/ZulipIcons.ttf

184 Bytes
Binary file not shown.

assets/icons/group_dm.svg

+1
Loading

lib/widgets/icons.dart

+12-8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ abstract final class ZulipIcons {
1414
//
1515
// * Add an SVG file in `assets/icons/`,
1616
// or otherwise edit the SVG files there.
17+
// The files' names (before ".svg") should be valid Dart identifiers.
1718
//
1819
// * Then run the command `scripts/icons/build-icon-font`.
1920
// That will update this file and the generated icon font,
@@ -27,29 +28,32 @@ abstract final class ZulipIcons {
2728
/// The Zulip custom icon "globe".
2829
static const IconData globe = IconData(0xf102, fontFamily: "Zulip Icons");
2930

31+
/// The Zulip custom icon "group_dm".
32+
static const IconData group_dm = IconData(0xf103, fontFamily: "Zulip Icons");
33+
3034
/// The Zulip custom icon "hash_sign".
31-
static const IconData hash_sign = IconData(0xf103, fontFamily: "Zulip Icons");
35+
static const IconData hash_sign = IconData(0xf104, fontFamily: "Zulip Icons");
3236

3337
/// The Zulip custom icon "language".
34-
static const IconData language = IconData(0xf104, fontFamily: "Zulip Icons");
38+
static const IconData language = IconData(0xf105, fontFamily: "Zulip Icons");
3539

3640
/// The Zulip custom icon "lock".
37-
static const IconData lock = IconData(0xf105, fontFamily: "Zulip Icons");
41+
static const IconData lock = IconData(0xf106, fontFamily: "Zulip Icons");
3842

3943
/// The Zulip custom icon "mute".
40-
static const IconData mute = IconData(0xf106, fontFamily: "Zulip Icons");
44+
static const IconData mute = IconData(0xf107, fontFamily: "Zulip Icons");
4145

4246
/// The Zulip custom icon "read_receipts".
43-
static const IconData read_receipts = IconData(0xf107, fontFamily: "Zulip Icons");
47+
static const IconData read_receipts = IconData(0xf108, fontFamily: "Zulip Icons");
4448

4549
/// The Zulip custom icon "topic".
46-
static const IconData topic = IconData(0xf108, fontFamily: "Zulip Icons");
50+
static const IconData topic = IconData(0xf109, fontFamily: "Zulip Icons");
4751

4852
/// The Zulip custom icon "unmute".
49-
static const IconData unmute = IconData(0xf109, fontFamily: "Zulip Icons");
53+
static const IconData unmute = IconData(0xf10a, fontFamily: "Zulip Icons");
5054

5155
/// The Zulip custom icon "user".
52-
static const IconData user = IconData(0xf10a, fontFamily: "Zulip Icons");
56+
static const IconData user = IconData(0xf10b, fontFamily: "Zulip Icons");
5357

5458
// END GENERATED ICON DATA
5559
}

0 commit comments

Comments
 (0)