diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a28435..743dce3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # 0.18.0 - feat: add `NesIcons.wrench` + - feat: add `NesIcons.discord` # 0.17.0 - feat: add `NesIcons.market` diff --git a/example/lib/gallery/sections/icons.dart b/example/lib/gallery/sections/icons.dart index a5b4d75..d463908 100644 --- a/example/lib/gallery/sections/icons.dart +++ b/example/lib/gallery/sections/icons.dart @@ -417,6 +417,10 @@ class IconsSection extends StatelessWidget { data: NesIcons.wrench, label: 'wrench', ), + _IconEntry( + data: NesIcons.discord, + label: 'discord', + ), ], ), ], diff --git a/lib/src/widgets/nes_icon.dart b/lib/src/widgets/nes_icon.dart index 5eb6834..c5f4d92 100644 --- a/lib/src/widgets/nes_icon.dart +++ b/lib/src/widgets/nes_icon.dart @@ -743,6 +743,13 @@ class NesIconCollection { '8,8;2,-1;1,0;2,-1;1,0;3,-1;2,0;2,-1;2,0;2,-1;6,0;3,-1;4,0;5,-1;2,0;6,-1;2,0;6,-1;2,0;6,-1;2,0;3,-1', ), ); + + /// Discord + late final discord = NesIconData( + MiniSprite.fromDataString( + '8,8;9,-1;6,0;1,-1;10,0;1,-1;2,0;1,-1;12,0;4,-1;2,0;16,-1', + ), + ); } /// {@template nes_icon}