Skip to content

Commit

Permalink
icons: Add group_dm custom icon, for recent-DMs screen
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbobbe committed Aug 2, 2023
1 parent f5cde2b commit 0690c54
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
Binary file modified assets/icons/ZulipIcons.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions assets/icons/group_dm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 12 additions & 8 deletions lib/widgets/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ abstract final class ZulipIcons {
//
// * Add an SVG file in `assets/icons/`,
// or otherwise edit the SVG files there.
// The files' names (before ".svg") should be valid Dart identifiers.
//
// * Then run the command `scripts/icons/build-icon-font`.
// That will update this file and the generated icon font,
Expand All @@ -27,29 +28,32 @@ abstract final class ZulipIcons {
/// The Zulip custom icon "globe".
static const IconData globe = IconData(0xf102, fontFamily: "Zulip Icons");

/// The Zulip custom icon "group_dm".
static const IconData group_dm = IconData(0xf103, fontFamily: "Zulip Icons");

/// The Zulip custom icon "hash_sign".
static const IconData hash_sign = IconData(0xf103, fontFamily: "Zulip Icons");
static const IconData hash_sign = IconData(0xf104, fontFamily: "Zulip Icons");

/// The Zulip custom icon "language".
static const IconData language = IconData(0xf104, fontFamily: "Zulip Icons");
static const IconData language = IconData(0xf105, fontFamily: "Zulip Icons");

/// The Zulip custom icon "lock".
static const IconData lock = IconData(0xf105, fontFamily: "Zulip Icons");
static const IconData lock = IconData(0xf106, fontFamily: "Zulip Icons");

/// The Zulip custom icon "mute".
static const IconData mute = IconData(0xf106, fontFamily: "Zulip Icons");
static const IconData mute = IconData(0xf107, fontFamily: "Zulip Icons");

/// The Zulip custom icon "read_receipts".
static const IconData read_receipts = IconData(0xf107, fontFamily: "Zulip Icons");
static const IconData read_receipts = IconData(0xf108, fontFamily: "Zulip Icons");

/// The Zulip custom icon "topic".
static const IconData topic = IconData(0xf108, fontFamily: "Zulip Icons");
static const IconData topic = IconData(0xf109, fontFamily: "Zulip Icons");

/// The Zulip custom icon "unmute".
static const IconData unmute = IconData(0xf109, fontFamily: "Zulip Icons");
static const IconData unmute = IconData(0xf10a, fontFamily: "Zulip Icons");

/// The Zulip custom icon "user".
static const IconData user = IconData(0xf10a, fontFamily: "Zulip Icons");
static const IconData user = IconData(0xf10b, fontFamily: "Zulip Icons");

// END GENERATED ICON DATA
}

0 comments on commit 0690c54

Please sign in to comment.