Skip to content

Commit cdf86fe

Browse files
committed
icons: Add star custom icon
This is a filled version of the Feather star icon. Copied from zulip web `web/shared/icons/star-filled.svg` which sourced it from: zulip/zulip#25903
1 parent b4a4557 commit cdf86fe

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

assets/icons/ZulipIcons.ttf

168 Bytes
Binary file not shown.

assets/icons/star.svg

Lines changed: 3 additions & 0 deletions
Loading

lib/widgets/icons.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,17 @@ abstract final class ZulipIcons {
5757
/// The Zulip custom icon "read_receipts".
5858
static const IconData read_receipts = IconData(0xf10b, fontFamily: "Zulip Icons");
5959

60+
/// The Zulip custom icon "star".
61+
static const IconData star = IconData(0xf10c, fontFamily: "Zulip Icons");
62+
6063
/// The Zulip custom icon "topic".
61-
static const IconData topic = IconData(0xf10c, fontFamily: "Zulip Icons");
64+
static const IconData topic = IconData(0xf10d, fontFamily: "Zulip Icons");
6265

6366
/// The Zulip custom icon "unmute".
64-
static const IconData unmute = IconData(0xf10d, fontFamily: "Zulip Icons");
67+
static const IconData unmute = IconData(0xf10e, fontFamily: "Zulip Icons");
6568

6669
/// The Zulip custom icon "user".
67-
static const IconData user = IconData(0xf10e, fontFamily: "Zulip Icons");
70+
static const IconData user = IconData(0xf10f, fontFamily: "Zulip Icons");
6871

6972
// END GENERATED ICON DATA
7073
}

0 commit comments

Comments
 (0)