We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b309bd commit 5e39476Copy full SHA for 5e39476
dev/tools/update_icons.dart
@@ -216,7 +216,7 @@ String getIconDeclaration(String line) {
216
final String rtl = kMirroredIcons.contains(name) ? ', matchTextDirection: true' : '';
217
return '''
218
219
- /// <p><i class="material-icons md-36">$name</i> — material icon named "$description".</p>
220
- static const IconData $identifier = const IconData(0x$codepoint, fontFamily: 'MaterialIcons'$rtl);
+ /// <i class="material-icons md-36">$name</i> — material icon named "$description".
+ static const IconData $identifier = IconData(0x$codepoint, fontFamily: 'MaterialIcons'$rtl);
221
''';
222
}
0 commit comments