Skip to content

Commit

Permalink
icons: Add star custom icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sirpengi committed Dec 13, 2023
1 parent 2ed3951 commit 4d352bb
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 3 deletions.
Binary file modified assets/icons/ZulipIcons.ttf
Binary file not shown.
39 changes: 39 additions & 0 deletions assets/icons/star.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions lib/widgets/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,17 @@ abstract final class ZulipIcons {
/// The Zulip custom icon "read_receipts".
static const IconData read_receipts = IconData(0xf10b, fontFamily: "Zulip Icons");

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

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

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

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

// END GENERATED ICON DATA
}
Expand Down

0 comments on commit 4d352bb

Please sign in to comment.