-
Notifications
You must be signed in to change notification settings - Fork 13
/
MaterialIcons.cs
15648 lines (13415 loc) · 607 KB
/
MaterialIcons.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
namespace MaterialDesign
{
/// <summary>
/// The unicode codepoints for each glyph in Material Icons.
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons"/>.
/// <para/>
/// <remarks>
/// This code was automatically generated by MD2CS (https://github.com/matthewrdev/md2cs).
/// Icons match the latest icon font from 2022-09-19.
/// </remarks>
/// </summary>
public static partial class MaterialIcons
{
/// <summary>
/// Unicode value for the '10k' icon ("\ue951").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:10k"/>.
/// </summary>
public const string TenK = "\ue951";
/// <summary>
/// Unicode value for the '10mp' icon ("\ue952").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:10mp"/>.
/// </summary>
public const string TenMegaPixels = "\ue952";
/// <summary>
/// Unicode value for the '11mp' icon ("\ue953").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:11mp"/>.
/// </summary>
public const string ElevenMegaPixels = "\ue953";
/// <summary>
/// Unicode value for the '123' icon ("\ueb8d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:123"/>.
/// </summary>
public const string OneTwoThree = "\ueb8d";
/// <summary>
/// Unicode value for the '12mp' icon ("\ue954").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:12mp"/>.
/// </summary>
public const string TwelveMegaPixels = "\ue954";
/// <summary>
/// Unicode value for the '13mp' icon ("\ue955").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:13mp"/>.
/// </summary>
public const string ThirteenMegaPixels = "\ue955";
/// <summary>
/// Unicode value for the '14mp' icon ("\ue956").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:14mp"/>.
/// </summary>
public const string FourteenMegaPixels = "\ue956";
/// <summary>
/// Unicode value for the '15mp' icon ("\ue957").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:15mp"/>.
/// </summary>
public const string FifteenMegaPixels = "\ue957";
/// <summary>
/// Unicode value for the '16mp' icon ("\ue958").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:16mp"/>.
/// </summary>
public const string SixteenMegaPixels = "\ue958";
/// <summary>
/// Unicode value for the '17mp' icon ("\ue959").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:17mp"/>.
/// </summary>
public const string SeventeenMegaPixels = "\ue959";
/// <summary>
/// Unicode value for the '18_up_rating' icon ("\uf8fd").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:18_up_rating"/>.
/// </summary>
public const string EighteenUpRating = "\uf8fd";
/// <summary>
/// Unicode value for the '18mp' icon ("\ue95a").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:18mp"/>.
/// </summary>
public const string EighteenMegaPixels = "\ue95a";
/// <summary>
/// Unicode value for the '19mp' icon ("\ue95b").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:19mp"/>.
/// </summary>
public const string NineteenMegaPixels = "\ue95b";
/// <summary>
/// Unicode value for the '1k' icon ("\ue95c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:1k"/>.
/// </summary>
public const string OneK = "\ue95c";
/// <summary>
/// Unicode value for the '1k_plus' icon ("\ue95d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:1k_plus"/>.
/// </summary>
public const string OneKPlus = "\ue95d";
/// <summary>
/// Unicode value for the '1x_mobiledata' icon ("\uefcd").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:1x_mobiledata"/>.
/// </summary>
public const string OneXMobiledata = "\uefcd";
/// <summary>
/// Unicode value for the '20mp' icon ("\ue95e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:20mp"/>.
/// </summary>
public const string TwentyMegaPixels = "\ue95e";
/// <summary>
/// Unicode value for the '21mp' icon ("\ue95f").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:21mp"/>.
/// </summary>
public const string TwentyOneMegaPixels = "\ue95f";
/// <summary>
/// Unicode value for the '22mp' icon ("\ue960").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:22mp"/>.
/// </summary>
public const string TwentyTwoMegaPixels = "\ue960";
/// <summary>
/// Unicode value for the '23mp' icon ("\ue961").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:23mp"/>.
/// </summary>
public const string TwentyThreeMegaPixels = "\ue961";
/// <summary>
/// Unicode value for the '24mp' icon ("\ue962").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:24mp"/>.
/// </summary>
public const string TwentyFourMegaPixels = "\ue962";
/// <summary>
/// Unicode value for the '2k' icon ("\ue963").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:2k"/>.
/// </summary>
public const string TwoK = "\ue963";
/// <summary>
/// Unicode value for the '2k_plus' icon ("\ue964").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:2k_plus"/>.
/// </summary>
public const string TwoKPlus = "\ue964";
/// <summary>
/// Unicode value for the '2mp' icon ("\ue965").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:2mp"/>.
/// </summary>
public const string TwoMegaPixels = "\ue965";
/// <summary>
/// Unicode value for the '30fps' icon ("\uefce").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:30fps"/>.
/// </summary>
public const string ThirtyFps = "\uefce";
/// <summary>
/// Unicode value for the '30fps_select' icon ("\uefcf").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:30fps_select"/>.
/// </summary>
public const string ThirtyFpsSelect = "\uefcf";
/// <summary>
/// Unicode value for the '360' icon ("\ue577").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:360"/>.
/// </summary>
public const string ThreeSixty = "\ue577";
/// <summary>
/// Unicode value for the '3d_rotation' icon ("\ue84d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:3d_rotation"/>.
/// </summary>
public const string Rotation3D = "\ue84d";
/// <summary>
/// Unicode value for the '3g_mobiledata' icon ("\uefd0").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:3g_mobiledata"/>.
/// </summary>
public const string ThreeGMobiledata = "\uefd0";
/// <summary>
/// Unicode value for the '3k' icon ("\ue966").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:3k"/>.
/// </summary>
public const string ThreeK = "\ue966";
/// <summary>
/// Unicode value for the '3k_plus' icon ("\ue967").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:3k_plus"/>.
/// </summary>
public const string ThreeKPlus = "\ue967";
/// <summary>
/// Unicode value for the '3mp' icon ("\ue968").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:3mp"/>.
/// </summary>
public const string ThreeMegaPixels = "\ue968";
/// <summary>
/// Unicode value for the '3p' icon ("\uefd1").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:3p"/>.
/// </summary>
public const string ThirdPerson = "\uefd1";
/// <summary>
/// Unicode value for the '4g_mobiledata' icon ("\uefd2").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:4g_mobiledata"/>.
/// </summary>
public const string FourGMobiledata = "\uefd2";
/// <summary>
/// Unicode value for the '4g_plus_mobiledata' icon ("\uefd3").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:4g_plus_mobiledata"/>.
/// </summary>
public const string FourGPlusMobiledata = "\uefd3";
/// <summary>
/// Unicode value for the '4k' icon ("\ue072").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:4k"/>.
/// </summary>
public const string FourK = "\ue072";
/// <summary>
/// Unicode value for the '4k_plus' icon ("\ue969").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:4k_plus"/>.
/// </summary>
public const string FourKPlus = "\ue969";
/// <summary>
/// Unicode value for the '4mp' icon ("\ue96a").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:4mp"/>.
/// </summary>
public const string FourMegaPixels = "\ue96a";
/// <summary>
/// Unicode value for the '5g' icon ("\uef38").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:5g"/>.
/// </summary>
public const string FiveG = "\uef38";
/// <summary>
/// Unicode value for the '5k' icon ("\ue96b").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:5k"/>.
/// </summary>
public const string FiveK = "\ue96b";
/// <summary>
/// Unicode value for the '5k_plus' icon ("\ue96c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:5k_plus"/>.
/// </summary>
public const string FiveKPlus = "\ue96c";
/// <summary>
/// Unicode value for the '5mp' icon ("\ue96d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:5mp"/>.
/// </summary>
public const string FiveMegaPixels = "\ue96d";
/// <summary>
/// Unicode value for the '60fps' icon ("\uefd4").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:60fps"/>.
/// </summary>
public const string SixtyFps = "\uefd4";
/// <summary>
/// Unicode value for the '60fps_select' icon ("\uefd5").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:60fps_select"/>.
/// </summary>
public const string SixtyFpsSelect = "\uefd5";
/// <summary>
/// Unicode value for the '6_ft_apart' icon ("\uf21e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:6_ft_apart"/>.
/// </summary>
public const string SixFtApart = "\uf21e";
/// <summary>
/// Unicode value for the '6k' icon ("\ue96e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:6k"/>.
/// </summary>
public const string SixK = "\ue96e";
/// <summary>
/// Unicode value for the '6k_plus' icon ("\ue96f").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:6k_plus"/>.
/// </summary>
public const string SixKPlus = "\ue96f";
/// <summary>
/// Unicode value for the '6mp' icon ("\ue970").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:6mp"/>.
/// </summary>
public const string SixMegaPixels = "\ue970";
/// <summary>
/// Unicode value for the '7k' icon ("\ue971").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:7k"/>.
/// </summary>
public const string SevenK = "\ue971";
/// <summary>
/// Unicode value for the '7k_plus' icon ("\ue972").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:7k_plus"/>.
/// </summary>
public const string SevenKPlus = "\ue972";
/// <summary>
/// Unicode value for the '7mp' icon ("\ue973").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:7mp"/>.
/// </summary>
public const string SevenMegaPixels = "\ue973";
/// <summary>
/// Unicode value for the '8k' icon ("\ue974").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:8k"/>.
/// </summary>
public const string EightK = "\ue974";
/// <summary>
/// Unicode value for the '8k_plus' icon ("\ue975").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:8k_plus"/>.
/// </summary>
public const string EightKPlus = "\ue975";
/// <summary>
/// Unicode value for the '8mp' icon ("\ue976").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:8mp"/>.
/// </summary>
public const string EightMegaPixels = "\ue976";
/// <summary>
/// Unicode value for the '9k' icon ("\ue977").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:9k"/>.
/// </summary>
public const string NineK = "\ue977";
/// <summary>
/// Unicode value for the '9k_plus' icon ("\ue978").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:9k_plus"/>.
/// </summary>
public const string NineKPlus = "\ue978";
/// <summary>
/// Unicode value for the '9mp' icon ("\ue979").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:9mp"/>.
/// </summary>
public const string NineMegaPixels = "\ue979";
/// <summary>
/// Unicode value for the 'abc' icon ("\ueb94").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:abc"/>.
/// </summary>
public const string Abc = "\ueb94";
/// <summary>
/// Unicode value for the 'ac_unit' icon ("\ueb3b").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:ac_unit"/>.
/// </summary>
public const string AcUnit = "\ueb3b";
/// <summary>
/// Unicode value for the 'access_alarm' icon ("\ue190").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:access_alarm"/>.
/// </summary>
public const string AccessAlarm = "\ue190";
/// <summary>
/// Unicode value for the 'access_alarms' icon ("\ue191").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:access_alarms"/>.
/// </summary>
public const string AccessAlarms = "\ue191";
/// <summary>
/// Unicode value for the 'access_time' icon ("\ue192").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:access_time"/>.
/// </summary>
public const string AccessTime = "\ue192";
/// <summary>
/// Unicode value for the 'access_time_filled' icon ("\uefd6").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:access_time_filled"/>.
/// </summary>
public const string AccessTimeFilled = "\uefd6";
/// <summary>
/// Unicode value for the 'accessibility' icon ("\ue84e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:accessibility"/>.
/// </summary>
public const string Accessibility = "\ue84e";
/// <summary>
/// Unicode value for the 'accessibility_new' icon ("\ue92c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:accessibility_new"/>.
/// </summary>
public const string AccessibilityNew = "\ue92c";
/// <summary>
/// Unicode value for the 'accessible' icon ("\ue914").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:accessible"/>.
/// </summary>
public const string Accessible = "\ue914";
/// <summary>
/// Unicode value for the 'accessible_forward' icon ("\ue934").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:accessible_forward"/>.
/// </summary>
public const string AccessibleForward = "\ue934";
/// <summary>
/// Unicode value for the 'account_balance' icon ("\ue84f").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:account_balance"/>.
/// </summary>
public const string AccountBalance = "\ue84f";
/// <summary>
/// Unicode value for the 'account_balance_wallet' icon ("\ue850").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:account_balance_wallet"/>.
/// </summary>
public const string AccountBalanceWallet = "\ue850";
/// <summary>
/// Unicode value for the 'account_box' icon ("\ue851").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:account_box"/>.
/// </summary>
public const string AccountBox = "\ue851";
/// <summary>
/// Unicode value for the 'account_circle' icon ("\ue853").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:account_circle"/>.
/// </summary>
public const string AccountCircle = "\ue853";
/// <summary>
/// Unicode value for the 'account_tree' icon ("\ue97a").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:account_tree"/>.
/// </summary>
public const string AccountTree = "\ue97a";
/// <summary>
/// Unicode value for the 'ad_units' icon ("\uef39").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:ad_units"/>.
/// </summary>
public const string AdUnits = "\uef39";
/// <summary>
/// Unicode value for the 'adb' icon ("\ue60e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:adb"/>.
/// </summary>
public const string Adb = "\ue60e";
/// <summary>
/// Unicode value for the 'add' icon ("\ue145").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add"/>.
/// </summary>
public const string Add = "\ue145";
/// <summary>
/// Unicode value for the 'add_a_photo' icon ("\ue439").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_a_photo"/>.
/// </summary>
public const string AddAPhoto = "\ue439";
/// <summary>
/// Unicode value for the 'add_alarm' icon ("\ue193").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_alarm"/>.
/// </summary>
public const string AddAlarm = "\ue193";
/// <summary>
/// Unicode value for the 'add_alert' icon ("\ue003").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_alert"/>.
/// </summary>
public const string AddAlert = "\ue003";
/// <summary>
/// Unicode value for the 'add_box' icon ("\ue146").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_box"/>.
/// </summary>
public const string AddBox = "\ue146";
/// <summary>
/// Unicode value for the 'add_business' icon ("\ue729").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_business"/>.
/// </summary>
public const string AddBusiness = "\ue729";
/// <summary>
/// Unicode value for the 'add_call' icon ("\ue0e8").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_call"/>.
/// </summary>
public const string AddCall = "\ue0e8";
/// <summary>
/// Unicode value for the 'add_card' icon ("\ueb86").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_card"/>.
/// </summary>
public const string AddCard = "\ueb86";
/// <summary>
/// Unicode value for the 'add_chart' icon ("\ue97b").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_chart"/>.
/// </summary>
public const string AddChart = "\ue97b";
/// <summary>
/// Unicode value for the 'add_circle' icon ("\ue147").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_circle"/>.
/// </summary>
public const string AddCircle = "\ue147";
/// <summary>
/// Unicode value for the 'add_circle_outline' icon ("\ue148").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_circle_outline"/>.
/// </summary>
public const string AddCircleOutline = "\ue148";
/// <summary>
/// Unicode value for the 'add_comment' icon ("\ue266").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_comment"/>.
/// </summary>
public const string AddComment = "\ue266";
/// <summary>
/// Unicode value for the 'add_home' icon ("\uf8eb").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_home"/>.
/// </summary>
public const string AddHome = "\uf8eb";
/// <summary>
/// Unicode value for the 'add_home_work' icon ("\uf8ed").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_home_work"/>.
/// </summary>
public const string AddHomeWork = "\uf8ed";
/// <summary>
/// Unicode value for the 'add_ic_call' icon ("\ue97c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_ic_call"/>.
/// </summary>
public const string AddIcCall = "\ue97c";
/// <summary>
/// Unicode value for the 'add_link' icon ("\ue178").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_link"/>.
/// </summary>
public const string AddLink = "\ue178";
/// <summary>
/// Unicode value for the 'add_location' icon ("\ue567").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_location"/>.
/// </summary>
public const string AddLocation = "\ue567";
/// <summary>
/// Unicode value for the 'add_location_alt' icon ("\uef3a").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_location_alt"/>.
/// </summary>
public const string AddLocationAlt = "\uef3a";
/// <summary>
/// Unicode value for the 'add_moderator' icon ("\ue97d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_moderator"/>.
/// </summary>
public const string AddModerator = "\ue97d";
/// <summary>
/// Unicode value for the 'add_photo_alternate' icon ("\ue43e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_photo_alternate"/>.
/// </summary>
public const string AddPhotoAlternate = "\ue43e";
/// <summary>
/// Unicode value for the 'add_reaction' icon ("\ue1d3").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_reaction"/>.
/// </summary>
public const string AddReaction = "\ue1d3";
/// <summary>
/// Unicode value for the 'add_road' icon ("\uef3b").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_road"/>.
/// </summary>
public const string AddRoad = "\uef3b";
/// <summary>
/// Unicode value for the 'add_shopping_cart' icon ("\ue854").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_shopping_cart"/>.
/// </summary>
public const string AddShoppingCart = "\ue854";
/// <summary>
/// Unicode value for the 'add_task' icon ("\uf23a").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_task"/>.
/// </summary>
public const string AddTask = "\uf23a";
/// <summary>
/// Unicode value for the 'add_to_drive' icon ("\ue65c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_to_drive"/>.
/// </summary>
public const string AddToDrive = "\ue65c";
/// <summary>
/// Unicode value for the 'add_to_home_screen' icon ("\ue1fe").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_to_home_screen"/>.
/// </summary>
public const string AddToHomeScreen = "\ue1fe";
/// <summary>
/// Unicode value for the 'add_to_photos' icon ("\ue39d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_to_photos"/>.
/// </summary>
public const string AddToPhotos = "\ue39d";
/// <summary>
/// Unicode value for the 'add_to_queue' icon ("\ue05c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:add_to_queue"/>.
/// </summary>
public const string AddToQueue = "\ue05c";
/// <summary>
/// Unicode value for the 'addchart' icon ("\uef3c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:addchart"/>.
/// </summary>
public const string Addchart = "\uef3c";
/// <summary>
/// Unicode value for the 'adf_scanner' icon ("\ueada").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:adf_scanner"/>.
/// </summary>
public const string AdfScanner = "\ueada";
/// <summary>
/// Unicode value for the 'adjust' icon ("\ue39e").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:adjust"/>.
/// </summary>
public const string Adjust = "\ue39e";
/// <summary>
/// Unicode value for the 'admin_panel_settings' icon ("\uef3d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:admin_panel_settings"/>.
/// </summary>
public const string AdminPanelSettings = "\uef3d";
/// <summary>
/// Unicode value for the 'adobe' icon ("\uea96").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:adobe"/>.
/// </summary>
public const string Adobe = "\uea96";
/// <summary>
/// Unicode value for the 'ads_click' icon ("\ue762").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:ads_click"/>.
/// </summary>
public const string AdsClick = "\ue762";
/// <summary>
/// Unicode value for the 'agriculture' icon ("\uea79").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:agriculture"/>.
/// </summary>
public const string Agriculture = "\uea79";
/// <summary>
/// Unicode value for the 'air' icon ("\uefd8").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:air"/>.
/// </summary>
public const string Air = "\uefd8";
/// <summary>
/// Unicode value for the 'airline_seat_flat' icon ("\ue630").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_flat"/>.
/// </summary>
public const string AirlineSeatFlat = "\ue630";
/// <summary>
/// Unicode value for the 'airline_seat_flat_angled' icon ("\ue631").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_flat_angled"/>.
/// </summary>
public const string AirlineSeatFlatAngled = "\ue631";
/// <summary>
/// Unicode value for the 'airline_seat_individual_suite' icon ("\ue632").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_individual_suite"/>.
/// </summary>
public const string AirlineSeatIndividualSuite = "\ue632";
/// <summary>
/// Unicode value for the 'airline_seat_legroom_extra' icon ("\ue633").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_legroom_extra"/>.
/// </summary>
public const string AirlineSeatLegroomExtra = "\ue633";
/// <summary>
/// Unicode value for the 'airline_seat_legroom_normal' icon ("\ue634").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_legroom_normal"/>.
/// </summary>
public const string AirlineSeatLegroomNormal = "\ue634";
/// <summary>
/// Unicode value for the 'airline_seat_legroom_reduced' icon ("\ue635").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_legroom_reduced"/>.
/// </summary>
public const string AirlineSeatLegroomReduced = "\ue635";
/// <summary>
/// Unicode value for the 'airline_seat_recline_extra' icon ("\ue636").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_recline_extra"/>.
/// </summary>
public const string AirlineSeatReclineExtra = "\ue636";
/// <summary>
/// Unicode value for the 'airline_seat_recline_normal' icon ("\ue637").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_seat_recline_normal"/>.
/// </summary>
public const string AirlineSeatReclineNormal = "\ue637";
/// <summary>
/// Unicode value for the 'airline_stops' icon ("\ue7d0").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airline_stops"/>.
/// </summary>
public const string AirlineStops = "\ue7d0";
/// <summary>
/// Unicode value for the 'airlines' icon ("\ue7ca").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airlines"/>.
/// </summary>
public const string Airlines = "\ue7ca";
/// <summary>
/// Unicode value for the 'airplane_ticket' icon ("\uefd9").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airplane_ticket"/>.
/// </summary>
public const string AirplaneTicket = "\uefd9";
/// <summary>
/// Unicode value for the 'airplanemode_active' icon ("\ue195").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airplanemode_active"/>.
/// </summary>
public const string AirplanemodeActive = "\ue195";
/// <summary>
/// Unicode value for the 'airplanemode_inactive' icon ("\ue194").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airplanemode_inactive"/>.
/// </summary>
public const string AirplanemodeInactive = "\ue194";
/// <summary>
/// Unicode value for the 'airplanemode_off' icon ("\ue194").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airplanemode_off"/>.
/// </summary>
public const string AirplanemodeOff = "\ue194";
/// <summary>
/// Unicode value for the 'airplanemode_on' icon ("\ue195").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airplanemode_on"/>.
/// </summary>
public const string AirplanemodeOn = "\ue195";
/// <summary>
/// Unicode value for the 'airplay' icon ("\ue055").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airplay"/>.
/// </summary>
public const string Airplay = "\ue055";
/// <summary>
/// Unicode value for the 'airport_shuttle' icon ("\ueb3c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:airport_shuttle"/>.
/// </summary>
public const string AirportShuttle = "\ueb3c";
/// <summary>
/// Unicode value for the 'alarm' icon ("\ue855").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:alarm"/>.
/// </summary>
public const string Alarm = "\ue855";
/// <summary>
/// Unicode value for the 'alarm_add' icon ("\ue856").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:alarm_add"/>.
/// </summary>
public const string AlarmAdd = "\ue856";
/// <summary>
/// Unicode value for the 'alarm_off' icon ("\ue857").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:alarm_off"/>.
/// </summary>
public const string AlarmOff = "\ue857";
/// <summary>
/// Unicode value for the 'alarm_on' icon ("\ue858").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:alarm_on"/>.
/// </summary>
public const string AlarmOn = "\ue858";
/// <summary>
/// Unicode value for the 'album' icon ("\ue019").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:album"/>.
/// </summary>
public const string Album = "\ue019";
/// <summary>
/// Unicode value for the 'align_horizontal_center' icon ("\ue00f").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:align_horizontal_center"/>.
/// </summary>
public const string AlignHorizontalCenter = "\ue00f";
/// <summary>
/// Unicode value for the 'align_horizontal_left' icon ("\ue00d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:align_horizontal_left"/>.
/// </summary>
public const string AlignHorizontalLeft = "\ue00d";
/// <summary>
/// Unicode value for the 'align_horizontal_right' icon ("\ue010").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:align_horizontal_right"/>.
/// </summary>
public const string AlignHorizontalRight = "\ue010";
/// <summary>
/// Unicode value for the 'align_vertical_bottom' icon ("\ue015").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:align_vertical_bottom"/>.
/// </summary>
public const string AlignVerticalBottom = "\ue015";
/// <summary>
/// Unicode value for the 'align_vertical_center' icon ("\ue011").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:align_vertical_center"/>.
/// </summary>
public const string AlignVerticalCenter = "\ue011";
/// <summary>
/// Unicode value for the 'align_vertical_top' icon ("\ue00c").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:align_vertical_top"/>.
/// </summary>
public const string AlignVerticalTop = "\ue00c";
/// <summary>
/// Unicode value for the 'all_inbox' icon ("\ue97f").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:all_inbox"/>.
/// </summary>
public const string AllInbox = "\ue97f";
/// <summary>
/// Unicode value for the 'all_inclusive' icon ("\ueb3d").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:all_inclusive"/>.
/// </summary>
public const string AllInclusive = "\ueb3d";
/// <summary>
/// Unicode value for the 'all_out' icon ("\ue90b").
/// <para/>
/// <see href="https://fonts.google.com/icons?selected=Material+Icons:all_out"/>.