-
Notifications
You must be signed in to change notification settings - Fork 3
/
fluenticons.css
10771 lines (10768 loc) · 503 KB
/
fluenticons.css
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
@font-face {
font-family: "FluentSystemIcons-Regular";
src: url("https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons/fonts/FluentSystemIcons-Regular.ttf") format("truetype");
}
@font-face {
font-family: "FluentSystemIcons-Filled";
src: url("https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons/fonts/FluentSystemIcons-Filled.ttf") format("truetype");
}
/**---- FONT PROPERTIES ----**/
/*.sc-ic:before {
font-family: FluentSystemIcons-Regular !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}*/
/*example usage = content: var(--fluent-play-filled-24) / content: var(--fluent-animal-dog-regular-24) */
:root {
/** ---------------- Fluent Icons (Regular) ---------------- **/
--fluent-access-time-regular-24: "\f101";
--fluent-accessibility-regular-16: "\f102";
--fluent-accessibility-regular-20: "\f103";
--fluent-accessibility-regular-24: "\f104";
--fluent-accessibility-regular-28: "\f105";
--fluent-add-regular-12: "\f107";
--fluent-add-regular-16: "\f108";
--fluent-add-regular-20: "\f109";
--fluent-add-regular-24: "\f10a";
--fluent-add-regular-28: "\f10b";
--fluent-add-circle-regular-20: "\f10c";
--fluent-add-circle-regular-24: "\f10d";
--fluent-add-circle-regular-28: "\f10e";
--fluent-airplane-regular-20: "\f10f";
--fluent-airplane-regular-24: "\f110";
--fluent-airplane-take-off-regular-16: "\f111";
--fluent-airplane-take-off-regular-20: "\f112";
--fluent-airplane-take-off-regular-24: "\f113";
--fluent-alert-regular-20: "\f114";
--fluent-alert-regular-24: "\f115";
--fluent-alert-regular-28: "\f116";
--fluent-alert-off-regular-16: "\f117";
--fluent-alert-off-regular-20: "\f118";
--fluent-alert-off-regular-24: "\f119";
--fluent-alert-off-regular-28: "\f11a";
--fluent-alert-on-regular-24: "\f11b";
--fluent-alert-snooze-regular-20: "\f11c";
--fluent-alert-snooze-regular-24: "\f11d";
--fluent-alert-urgent-regular-20: "\f11e";
--fluent-alert-urgent-regular-24: "\f11f";
--fluent-animal-dog-regular-20: "\f120";
--fluent-animal-dog-regular-24: "\f121";
--fluent-app-folder-regular-20: "\f122";
--fluent-app-folder-regular-24: "\f123";
--fluent-app-generic-regular-24: "\f124";
--fluent-app-recent-regular-24: "\f125";
--fluent-app-store-regular-24: "\f12a";
--fluent-app-title-regular-24: "\f12b";
--fluent-approvals-app-regular-24: "\f130";
--fluent-approvals-app-regular-28: "\f131";
--fluent-apps-regular-16: "\f132";
--fluent-apps-regular-20: "\f133";
--fluent-apps-regular-24: "\f134";
--fluent-apps-regular-28: "\f135";
--fluent-apps-add-in-regular-20: "\f136";
--fluent-apps-add-in-regular-24: "\f137";
--fluent-apps-list-regular-24: "\f138";
--fluent-archive-regular-20: "\f139";
--fluent-archive-regular-24: "\f13a";
--fluent-archive-regular-28: "\f13b";
--fluent-archive-regular-48: "\f13c";
--fluent-arrow-clockwise-regular-20: "\f13d";
--fluent-arrow-clockwise-regular-24: "\f13e";
--fluent-arrow-counterclockwise-regular-20: "\f13f";
--fluent-arrow-counterclockwise-regular-24: "\f140";
--fluent-arrow-curve-down-left-regular-20: "\f141";
--fluent-arrow-curve-down-right-regular-20: "\f142";
--fluent-arrow-curve-up-left-regular-20: "\f145";
--fluent-arrow-curve-up-right-regular-20: "\f146";
--fluent-arrow-down-regular-16: "\f147";
--fluent-arrow-down-regular-20: "\f148";
--fluent-arrow-down-regular-24: "\f149";
--fluent-arrow-down-regular-28: "\f14a";
--fluent-arrow-down-left-regular-24: "\f14b";
--fluent-arrow-download-regular-16: "\f14f";
--fluent-arrow-download-regular-20: "\f150";
--fluent-arrow-download-regular-24: "\f151";
--fluent-arrow-download-regular-48: "\f152";
--fluent-arrow-expand-regular-24: "\f154";
--fluent-arrow-forward-regular-16: "\f156";
--fluent-arrow-forward-regular-20: "\f157";
--fluent-arrow-forward-regular-24: "\f158";
--fluent-arrow-import-regular-20: "\f159";
--fluent-arrow-import-regular-24: "\f15a";
--fluent-arrow-left-regular-20: "\f15b";
--fluent-arrow-left-regular-24: "\f15c";
--fluent-arrow-left-regular-28: "\f15d";
--fluent-arrow-maximize-regular-16: "\f15e";
--fluent-arrow-maximize-regular-20: "\f15f";
--fluent-arrow-maximize-regular-24: "\f160";
--fluent-arrow-maximize-regular-28: "\f161";
--fluent-arrow-maximize-vertical-regular-20: "\f162";
--fluent-arrow-maximize-vertical-regular-24: "\f163";
--fluent-arrow-minimize-regular-16: "\f164";
--fluent-arrow-minimize-regular-20: "\f165";
--fluent-arrow-minimize-regular-24: "\f166";
--fluent-arrow-minimize-regular-28: "\f167";
--fluent-arrow-minimize-vertical-regular-24: "\f168";
--fluent-arrow-move-regular-24: "\f169";
--fluent-arrow-next-regular-20: "\f16a";
--fluent-arrow-next-regular-24: "\f16b";
--fluent-arrow-previous-regular-20: "\f16c";
--fluent-arrow-previous-regular-24: "\f16d";
--fluent-arrow-redo-regular-20: "\f16e";
--fluent-arrow-redo-regular-24: "\f16f";
--fluent-arrow-repeat-all-regular-16: "\f170";
--fluent-arrow-repeat-all-regular-20: "\f171";
--fluent-arrow-repeat-all-regular-24: "\f172";
--fluent-arrow-repeat-all-off-regular-16: "\f173";
--fluent-arrow-repeat-all-off-regular-20: "\f174";
--fluent-arrow-repeat-all-off-regular-24: "\f175";
--fluent-arrow-reply-regular-16: "\f176";
--fluent-arrow-reply-regular-20: "\f177";
--fluent-arrow-reply-regular-24: "\f178";
--fluent-arrow-reply-regular-48: "\f179";
--fluent-arrow-reply-all-regular-16: "\f17a";
--fluent-arrow-reply-all-regular-20: "\f17b";
--fluent-arrow-reply-all-regular-24: "\f17c";
--fluent-arrow-reply-all-regular-48: "\f17d";
--fluent-arrow-reply-down-regular-16: "\f17e";
--fluent-arrow-reply-down-regular-20: "\f17f";
--fluent-arrow-reply-down-regular-24: "\f180";
--fluent-arrow-right-regular-20: "\f181";
--fluent-arrow-right-regular-24: "\f182";
--fluent-arrow-right-regular-28: "\f183";
--fluent-arrow-rotate-clockwise-regular-20: "\f185";
--fluent-arrow-rotate-clockwise-regular-24: "\f186";
--fluent-arrow-rotate-counterclockwise-regular-20: "\f187";
--fluent-arrow-rotate-counterclockwise-regular-24: "\f188";
--fluent-arrow-sort-regular-20: "\f18a";
--fluent-arrow-sort-regular-24: "\f18b";
--fluent-arrow-sort-regular-28: "\f18c";
--fluent-arrow-swap-regular-20: "\f18d";
--fluent-arrow-swap-regular-24: "\f18e";
--fluent-arrow-sync-regular-12: "\f18f";
--fluent-arrow-sync-regular-20: "\f190";
--fluent-arrow-sync-regular-24: "\f191";
--fluent-arrow-sync-circle-regular-16: "\f192";
--fluent-arrow-sync-circle-regular-20: "\f193";
--fluent-arrow-sync-circle-regular-24: "\f194";
--fluent-arrow-sync-off-regular-12: "\f195";
--fluent-arrow-trending-regular-16: "\f196";
--fluent-arrow-trending-regular-20: "\f197";
--fluent-arrow-trending-regular-24: "\f198";
--fluent-arrow-undo-regular-20: "\f199";
--fluent-arrow-undo-regular-24: "\f19a";
--fluent-arrow-up-regular-20: "\f19b";
--fluent-arrow-up-regular-24: "\f19c";
--fluent-arrow-up-regular-28: "\f19d";
--fluent-arrow-up-left-regular-24: "\f1a1";
--fluent-arrow-up-right-regular-24: "\f1a3";
--fluent-arrow-upload-regular-20: "\f1a4";
--fluent-arrow-upload-regular-24: "\f1a5";
--fluent-arrows-bidirectional-regular-24: "\f1a6";
--fluent-attach-regular-16: "\f1a8";
--fluent-attach-regular-20: "\f1a9";
--fluent-attach-regular-24: "\f1aa";
--fluent-autocorrect-regular-24: "\f1ae";
--fluent-autosum-regular-20: "\f1af";
--fluent-autosum-regular-24: "\f1b0";
--fluent-backspace-regular-20: "\f1b1";
--fluent-backspace-regular-24: "\f1b2";
--fluent-badge-regular-24: "\f1b5";
--fluent-balloon-regular-20: "\f1b6";
--fluent-balloon-regular-24: "\f1b7";
--fluent-battery-0-regular-20: "\f1bb";
--fluent-battery-0-regular-24: "\f1bc";
--fluent-battery-1-regular-20: "\f1bd";
--fluent-battery-1-regular-24: "\f1be";
--fluent-battery-2-regular-20: "\f1bf";
--fluent-battery-2-regular-24: "\f1c0";
--fluent-battery-3-regular-20: "\f1c1";
--fluent-battery-3-regular-24: "\f1c2";
--fluent-battery-4-regular-20: "\f1c3";
--fluent-battery-4-regular-24: "\f1c4";
--fluent-battery-5-regular-20: "\f1c5";
--fluent-battery-5-regular-24: "\f1c6";
--fluent-battery-6-regular-20: "\f1c7";
--fluent-battery-6-regular-24: "\f1c8";
--fluent-battery-7-regular-20: "\f1c9";
--fluent-battery-7-regular-24: "\f1ca";
--fluent-battery-8-regular-20: "\f1cb";
--fluent-battery-8-regular-24: "\f1cc";
--fluent-battery-9-regular-20: "\f1cd";
--fluent-battery-9-regular-24: "\f1ce";
--fluent-battery-charge-regular-20: "\f1cf";
--fluent-battery-charge-regular-24: "\f1d0";
--fluent-battery-full-regular-20: "\f1d1";
--fluent-battery-full-regular-24: "\f1d2";
--fluent-battery-saver-regular-20: "\f1d3";
--fluent-battery-saver-regular-24: "\f1d4";
--fluent-battery-warning-regular-24: "\f1d5";
--fluent-beaker-regular-16: "\f1d6";
--fluent-beaker-regular-20: "\f1d7";
--fluent-beaker-regular-24: "\f1d8";
--fluent-bed-regular-20: "\f1d9";
--fluent-bed-regular-24: "\f1da";
--fluent-block-regular-16: "\f1db";
--fluent-block-regular-20: "\f1dc";
--fluent-block-regular-24: "\f1dd";
--fluent-bluetooth-regular-20: "\f1de";
--fluent-bluetooth-regular-24: "\f1df";
--fluent-bluetooth-connected-regular-24: "\f1e0";
--fluent-bluetooth-disabled-regular-24: "\f1e1";
--fluent-bluetooth-searching-regular-24: "\f1e2";
--fluent-board-regular-24: "\f1e3";
--fluent-book-globe-regular-24: "\f1f0";
--fluent-book-number-regular-16: "\f1f1";
--fluent-book-number-regular-20: "\f1f2";
--fluent-book-number-regular-24: "\f1f3";
--fluent-bookmark-regular-16: "\f1f4";
--fluent-bookmark-regular-20: "\f1f5";
--fluent-bookmark-regular-24: "\f1f6";
--fluent-bookmark-regular-28: "\f1f7";
--fluent-bookmark-off-regular-24: "\f1f8";
--fluent-bot-regular-24: "\f1f9";
--fluent-bot-add-regular-24: "\f1fa";
--fluent-branch-regular-24: "\f1fb";
--fluent-briefcase-regular-20: "\f1fc";
--fluent-briefcase-regular-24: "\f1fd";
--fluent-broad-activity-feed-regular-24: "\f200";
--fluent-broom-regular-20: "\f201";
--fluent-broom-regular-24: "\f202";
--fluent-building-regular-24: "\f205";
--fluent-building-retail-regular-24: "\f209";
--fluent-calculator-regular-20: "\f20a";
--fluent-calendar-3-day-regular-20: "\f20e";
--fluent-calendar-3-day-regular-24: "\f20f";
--fluent-calendar-3-day-regular-28: "\f210";
--fluent-calendar-add-regular-20: "\f211";
--fluent-calendar-add-regular-24: "\f212";
--fluent-calendar-agenda-regular-20: "\f213";
--fluent-calendar-agenda-regular-24: "\f214";
--fluent-calendar-agenda-regular-28: "\f215";
--fluent-calendar-arrow-right-regular-20: "\f216";
--fluent-calendar-assistant-regular-20: "\f217";
--fluent-calendar-assistant-regular-24: "\f218";
--fluent-calendar-cancel-regular-20: "\f219";
--fluent-calendar-cancel-regular-24: "\f21a";
--fluent-calendar-checkmark-regular-16: "\f21b";
--fluent-calendar-checkmark-regular-20: "\f21c";
--fluent-calendar-clock-regular-20: "\f21d";
--fluent-calendar-clock-regular-24: "\f21e";
--fluent-calendar-day-regular-20: "\f222";
--fluent-calendar-day-regular-24: "\f223";
--fluent-calendar-day-regular-28: "\f224";
--fluent-calendar-empty-regular-16: "\f225";
--fluent-calendar-empty-regular-20: "\f226";
--fluent-calendar-empty-regular-24: "\f227";
--fluent-calendar-empty-regular-28: "\f228";
--fluent-calendar-month-regular-20: "\f22a";
--fluent-calendar-month-regular-24: "\f22b";
--fluent-calendar-month-regular-28: "\f22c";
--fluent-calendar-multiple-regular-20: "\f22d";
--fluent-calendar-multiple-regular-24: "\f22e";
--fluent-calendar-overdue-regular-24: "\f22f";
--fluent-calendar-person-regular-20: "\f230";
--fluent-calendar-reply-regular-16: "\f231";
--fluent-calendar-reply-regular-20: "\f232";
--fluent-calendar-reply-regular-24: "\f233";
--fluent-calendar-reply-regular-28: "\f234";
--fluent-calendar-settings-regular-20: "\f235";
--fluent-calendar-star-regular-20: "\f236";
--fluent-calendar-star-regular-24: "\f237";
--fluent-calendar-sync-regular-16: "\f238";
--fluent-calendar-sync-regular-20: "\f239";
--fluent-calendar-sync-regular-24: "\f23a";
--fluent-calendar-today-regular-16: "\f23b";
--fluent-calendar-today-regular-20: "\f23c";
--fluent-calendar-today-regular-24: "\f23d";
--fluent-calendar-today-regular-28: "\f23e";
--fluent-calendar-week-numbers-regular-24: "\f23f";
--fluent-calendar-week-start-regular-20: "\f240";
--fluent-calendar-week-start-regular-24: "\f241";
--fluent-calendar-week-start-regular-28: "\f242";
--fluent-calendar-work-week-regular-16: "\f243";
--fluent-calendar-work-week-regular-20: "\f244";
--fluent-calendar-work-week-regular-24: "\f245";
--fluent-call-add-regular-24: "\f246";
--fluent-call-end-regular-20: "\f247";
--fluent-call-end-regular-24: "\f248";
--fluent-call-end-regular-28: "\f249";
--fluent-call-forward-regular-24: "\f24a";
--fluent-call-inbound-regular-16: "\f24b";
--fluent-call-inbound-regular-24: "\f24c";
--fluent-call-missed-regular-16: "\f24d";
--fluent-call-missed-regular-24: "\f24e";
--fluent-call-outbound-regular-16: "\f24f";
--fluent-call-outbound-regular-24: "\f250";
--fluent-call-park-regular-24: "\f251";
--fluent-calligraphy-pen-regular-20: "\f252";
--fluent-calligraphy-pen-regular-24: "\f253";
--fluent-camera-regular-20: "\f254";
--fluent-camera-regular-24: "\f255";
--fluent-camera-regular-28: "\f256";
--fluent-camera-add-regular-20: "\f257";
--fluent-camera-add-regular-24: "\f258";
--fluent-camera-add-regular-48: "\f259";
--fluent-camera-switch-regular-24: "\f25a";
--fluent-caret-regular-12: "\f25b";
--fluent-caret-regular-16: "\f25c";
--fluent-caret-regular-20: "\f25d";
--fluent-caret-regular-24: "\f25e";
--fluent-caret-down-regular-12: "\f25f";
--fluent-caret-down-regular-16: "\f260";
--fluent-caret-down-regular-20: "\f261";
--fluent-caret-down-regular-24: "\f262";
--fluent-caret-left-regular-12: "\f263";
--fluent-caret-left-regular-16: "\f264";
--fluent-caret-left-regular-20: "\f265";
--fluent-caret-left-regular-24: "\f266";
--fluent-caret-right-regular-12: "\f267";
--fluent-caret-right-regular-16: "\f268";
--fluent-caret-right-regular-20: "\f269";
--fluent-caret-right-regular-24: "\f26a";
--fluent-cart-regular-24: "\f26b";
--fluent-cast-regular-20: "\f26c";
--fluent-cast-regular-24: "\f26d";
--fluent-cast-regular-28: "\f26e";
--fluent-cellular-3g-regular-24: "\f26f";
--fluent-cellular-4g-regular-24: "\f270";
--fluent-cellular-data-1-regular-20: "\f271";
--fluent-cellular-data-1-regular-24: "\f272";
--fluent-cellular-data-2-regular-20: "\f273";
--fluent-cellular-data-2-regular-24: "\f274";
--fluent-cellular-data-3-regular-20: "\f275";
--fluent-cellular-data-3-regular-24: "\f276";
--fluent-cellular-data-4-regular-20: "\f277";
--fluent-cellular-data-4-regular-24: "\f278";
--fluent-cellular-data-5-regular-20: "\f279";
--fluent-cellular-data-5-regular-24: "\f27a";
--fluent-certificate-regular-20: "\f27e";
--fluent-certificate-regular-24: "\f27f";
--fluent-channel-regular-16: "\f280";
--fluent-channel-regular-20: "\f281";
--fluent-channel-regular-24: "\f282";
--fluent-chat-regular-20: "\f286";
--fluent-chat-regular-24: "\f287";
--fluent-chat-regular-28: "\f288";
--fluent-chat-bubbles-question-regular-24: "\f289";
--fluent-chat-help-regular-24: "\f28a";
--fluent-chat-off-regular-24: "\f28b";
--fluent-chat-warning-regular-24: "\f28c";
--fluent-checkbox-checked-regular-20: "\f28d";
--fluent-checkbox-checked-regular-24: "\f28e";
--fluent-checkbox-unchecked-regular-12: "\f28f";
--fluent-checkbox-unchecked-regular-16: "\f290";
--fluent-checkbox-unchecked-regular-20: "\f291";
--fluent-checkbox-unchecked-regular-24: "\f292";
--fluent-checkmark-regular-12: "\f293";
--fluent-checkmark-regular-20: "\f294";
--fluent-checkmark-regular-24: "\f295";
--fluent-checkmark-regular-28: "\f296";
--fluent-checkmark-circle-regular-16: "\f297";
--fluent-checkmark-circle-regular-20: "\f298";
--fluent-checkmark-circle-regular-24: "\f299";
--fluent-checkmark-circle-regular-48: "\f29a";
--fluent-checkmark-lock-regular-16: "\f29b";
--fluent-checkmark-lock-regular-20: "\f29c";
--fluent-checkmark-lock-regular-24: "\f29d";
--fluent-checkmark-square-regular-24: "\f29e";
--fluent-checkmark-underline-circle-regular-16: "\f29f";
--fluent-checkmark-underline-circle-regular-20: "\f2a0";
--fluent-chevron-down-regular-12: "\f2a1";
--fluent-chevron-down-regular-16: "\f2a2";
--fluent-chevron-down-regular-20: "\f2a3";
--fluent-chevron-down-regular-24: "\f2a4";
--fluent-chevron-down-regular-28: "\f2a5";
--fluent-chevron-down-regular-48: "\f2a6";
--fluent-chevron-left-regular-12: "\f2a8";
--fluent-chevron-left-regular-16: "\f2a9";
--fluent-chevron-left-regular-20: "\f2aa";
--fluent-chevron-left-regular-24: "\f2ab";
--fluent-chevron-left-regular-28: "\f2ac";
--fluent-chevron-left-regular-48: "\f2ad";
--fluent-chevron-right-regular-12: "\f2ae";
--fluent-chevron-right-regular-16: "\f2af";
--fluent-chevron-right-regular-20: "\f2b0";
--fluent-chevron-right-regular-24: "\f2b1";
--fluent-chevron-right-regular-28: "\f2b2";
--fluent-chevron-right-regular-48: "\f2b3";
--fluent-chevron-up-regular-12: "\f2b4";
--fluent-chevron-up-regular-16: "\f2b5";
--fluent-chevron-up-regular-20: "\f2b6";
--fluent-chevron-up-regular-24: "\f2b7";
--fluent-chevron-up-regular-28: "\f2b8";
--fluent-chevron-up-regular-48: "\f2b9";
--fluent-circle-regular-16: "\f2ba";
--fluent-circle-regular-20: "\f2bb";
--fluent-circle-regular-24: "\f2bc";
--fluent-circle-half-fill-regular-20: "\f2bd";
--fluent-circle-half-fill-regular-24: "\f2be";
--fluent-circle-line-regular-24: "\f2bf";
--fluent-circle-small-regular-24: "\f2c0";
--fluent-city-regular-16: "\f2c1";
--fluent-city-regular-20: "\f2c2";
--fluent-city-regular-24: "\f2c3";
--fluent-class-regular-24: "\f2c4";
--fluent-classification-regular-16: "\f2c5";
--fluent-classification-regular-20: "\f2c6";
--fluent-classification-regular-24: "\f2c7";
--fluent-clear-formatting-regular-24: "\f2c8";
--fluent-clipboard-regular-20: "\f2c9";
--fluent-clipboard-regular-24: "\f2ca";
--fluent-clipboard-code-regular-16: "\f2cb";
--fluent-clipboard-code-regular-20: "\f2cc";
--fluent-clipboard-code-regular-24: "\f2cd";
--fluent-clipboard-letter-regular-16: "\f2ce";
--fluent-clipboard-letter-regular-20: "\f2cf";
--fluent-clipboard-letter-regular-24: "\f2d0";
--fluent-clipboard-link-regular-16: "\f2d1";
--fluent-clipboard-link-regular-20: "\f2d2";
--fluent-clipboard-link-regular-24: "\f2d3";
--fluent-clipboard-more-regular-24: "\f2d4";
--fluent-clipboard-paste-regular-20: "\f2d5";
--fluent-clipboard-paste-regular-24: "\f2d6";
--fluent-clipboard-search-regular-20: "\f2d7";
--fluent-clipboard-search-regular-24: "\f2d8";
--fluent-clock-regular-12: "\f2db";
--fluent-clock-regular-16: "\f2dc";
--fluent-clock-regular-20: "\f2dd";
--fluent-clock-regular-24: "\f2de";
--fluent-clock-regular-28: "\f2df";
--fluent-clock-regular-48: "\f2e0";
--fluent-clock-alarm-regular-20: "\f2e1";
--fluent-clock-alarm-regular-24: "\f2e2";
--fluent-closed-caption-regular-24: "\f2e3";
--fluent-cloud-regular-20: "\f2e4";
--fluent-cloud-regular-24: "\f2e5";
--fluent-cloud-regular-48: "\f2e6";
--fluent-cloud-backup-regular-24: "\f2e7";
--fluent-cloud-backup-regular-48: "\f2e8";
--fluent-cloud-download-regular-24: "\f2e9";
--fluent-cloud-off-regular-24: "\f2ea";
--fluent-cloud-off-regular-48: "\f2eb";
--fluent-cloud-offline-regular-24: "\f2ec";
--fluent-cloud-sync-complete-regular-24: "\f2ed";
--fluent-cloud-sync-complete-regular-48: "\f2ee";
--fluent-code-regular-20: "\f2ef";
--fluent-code-regular-24: "\f2f0";
--fluent-collections-regular-20: "\f2f1";
--fluent-collections-regular-24: "\f2f2";
--fluent-collections-add-regular-20: "\f2f3";
--fluent-collections-add-regular-24: "\f2f4";
--fluent-color-regular-20: "\f2f5";
--fluent-color-regular-24: "\f2f6";
--fluent-color-background-regular-20: "\f2f7";
--fluent-color-background-regular-24: "\f2f8";
--fluent-color-fill-regular-20: "\f2f9";
--fluent-color-fill-regular-24: "\f2fa";
--fluent-color-line-regular-20: "\f2fb";
--fluent-color-line-regular-24: "\f2fc";
--fluent-column-triple-regular-24: "\f2fd";
--fluent-comment-regular-16: "\f2fe";
--fluent-comment-regular-20: "\f2ff";
--fluent-comment-regular-24: "\f300";
--fluent-comment-add-regular-24: "\f301";
--fluent-comment-mention-regular-16: "\f303";
--fluent-comment-mention-regular-20: "\f304";
--fluent-comment-mention-regular-24: "\f305";
--fluent-comment-multiple-regular-16: "\f306";
--fluent-comment-multiple-regular-20: "\f307";
--fluent-comment-multiple-regular-24: "\f308";
--fluent-communication-regular-16: "\f30c";
--fluent-communication-regular-20: "\f30d";
--fluent-communication-regular-24: "\f30e";
--fluent-compass-northwest-regular-16: "\f30f";
--fluent-compass-northwest-regular-20: "\f310";
--fluent-compass-northwest-regular-24: "\f311";
--fluent-compass-northwest-regular-28: "\f312";
--fluent-compose-regular-16: "\f313";
--fluent-compose-regular-20: "\f314";
--fluent-compose-regular-24: "\f315";
--fluent-compose-regular-28: "\f316";
--fluent-conference-room-regular-16: "\f317";
--fluent-conference-room-regular-20: "\f318";
--fluent-conference-room-regular-24: "\f319";
--fluent-conference-room-regular-28: "\f31a";
--fluent-conference-room-regular-48: "\f31b";
--fluent-connector-regular-16: "\f31c";
--fluent-connector-regular-20: "\f31d";
--fluent-connector-regular-24: "\f31e";
--fluent-contact-card-regular-20: "\f31f";
--fluent-contact-card-regular-24: "\f320";
--fluent-contact-card-group-regular-24: "\f321";
--fluent-content-settings-regular-16: "\f323";
--fluent-content-settings-regular-20: "\f324";
--fluent-content-settings-regular-24: "\f325";
--fluent-convert-to-table-regular-24: "\f326";
--fluent-convert-to-text-regular-24: "\f327";
--fluent-cookies-regular-20: "\f328";
--fluent-cookies-regular-24: "\f329";
--fluent-copy-regular-16: "\f32a";
--fluent-copy-regular-20: "\f32b";
--fluent-copy-regular-24: "\f32c";
--fluent-crop-regular-24: "\f331";
--fluent-crop-interim-regular-24: "\f332";
--fluent-crop-interim-off-regular-24: "\f333";
--fluent-cube-regular-16: "\f334";
--fluent-cube-regular-20: "\f335";
--fluent-cube-regular-24: "\f336";
--fluent-cut-regular-20: "\f33a";
--fluent-cut-regular-24: "\f33b";
--fluent-dark-theme-regular-24: "\f33c";
--fluent-data-area-regular-24: "\f33d";
--fluent-data-bar-horizontal-regular-24: "\f33e";
--fluent-data-bar-vertical-regular-20: "\f33f";
--fluent-data-bar-vertical-regular-24: "\f340";
--fluent-data-funnel-regular-24: "\f341";
--fluent-data-histogram-regular-24: "\f342";
--fluent-data-line-regular-24: "\f343";
--fluent-data-pie-regular-20: "\f344";
--fluent-data-pie-regular-24: "\f345";
--fluent-data-scatter-regular-24: "\f346";
--fluent-data-sunburst-regular-24: "\f347";
--fluent-data-treemap-regular-24: "\f348";
--fluent-data-usage-regular-24: "\f349";
--fluent-data-waterfall-regular-24: "\f34a";
--fluent-data-whisker-regular-24: "\f34b";
--fluent-delete-regular-20: "\f34c";
--fluent-delete-regular-24: "\f34d";
--fluent-delete-regular-28: "\f34e";
--fluent-delete-regular-48: "\f34f";
--fluent-delete-off-regular-20: "\f352";
--fluent-delete-off-regular-24: "\f353";
--fluent-dentist-regular-24: "\f354";
--fluent-design-ideas-regular-16: "\f355";
--fluent-design-ideas-regular-20: "\f356";
--fluent-design-ideas-regular-24: "\f357";
--fluent-desktop-regular-16: "\f358";
--fluent-desktop-regular-20: "\f359";
--fluent-desktop-regular-24: "\f35a";
--fluent-desktop-regular-28: "\f35b";
--fluent-developer-board-regular-24: "\f35c";
--fluent-device-eq-regular-24: "\f35d";
--fluent-dialpad-regular-20: "\f35e";
--fluent-dialpad-regular-24: "\f35f";
--fluent-dialpad-off-regular-24: "\f360";
--fluent-directions-regular-20: "\f365";
--fluent-directions-regular-24: "\f366";
--fluent-dismiss-regular-12: "\f367";
--fluent-dismiss-regular-16: "\f368";
--fluent-dismiss-regular-20: "\f369";
--fluent-dismiss-regular-24: "\f36a";
--fluent-dismiss-regular-28: "\f36b";
--fluent-dismiss-circle-regular-16: "\f36c";
--fluent-dismiss-circle-regular-20: "\f36d";
--fluent-dismiss-circle-regular-24: "\f36e";
--fluent-dismiss-circle-regular-48: "\f36f";
--fluent-divider-short-regular-24: "\f370";
--fluent-divider-tall-regular-24: "\f371";
--fluent-dock-regular-24: "\f372";
--fluent-dock-row-regular-24: "\f376";
--fluent-doctor-regular-24: "\f377";
--fluent-document-regular-20: "\f378";
--fluent-document-regular-24: "\f379";
--fluent-document-regular-28: "\f37a";
--fluent-document-briefcase-regular-20: "\f37c";
--fluent-document-briefcase-regular-24: "\f37d";
--fluent-document-catch-up-regular-24: "\f37e";
--fluent-document-copy-regular-16: "\f37f";
--fluent-document-copy-regular-20: "\f380";
--fluent-document-copy-regular-24: "\f381";
--fluent-document-copy-regular-48: "\f382";
--fluent-document-dismiss-regular-20: "\f383";
--fluent-document-dismiss-regular-24: "\f384";
--fluent-document-edit-regular-16: "\f385";
--fluent-document-edit-regular-20: "\f386";
--fluent-document-edit-regular-24: "\f387";
--fluent-document-endnote-regular-20: "\f388";
--fluent-document-endnote-regular-24: "\f389";
--fluent-document-error-regular-16: "\f38a";
--fluent-document-error-regular-20: "\f38b";
--fluent-document-error-regular-24: "\f38c";
--fluent-document-footer-regular-24: "\f38d";
--fluent-document-footer-remove-regular-24: "\f38e";
--fluent-document-header-regular-24: "\f38f";
--fluent-document-header-footer-regular-20: "\f390";
--fluent-document-header-footer-regular-24: "\f391";
--fluent-document-header-remove-regular-24: "\f392";
--fluent-document-landscape-regular-20: "\f393";
--fluent-document-landscape-regular-24: "\f394";
--fluent-document-margins-regular-20: "\f395";
--fluent-document-margins-regular-24: "\f396";
--fluent-document-one-page-regular-20: "\f399";
--fluent-document-one-page-regular-24: "\f39a";
--fluent-document-page-bottom-center-regular-20: "\f39c";
--fluent-document-page-bottom-center-regular-24: "\f39d";
--fluent-document-page-bottom-left-regular-20: "\f39e";
--fluent-document-page-bottom-left-regular-24: "\f39f";
--fluent-document-page-bottom-right-regular-20: "\f3a0";
--fluent-document-page-bottom-right-regular-24: "\f3a1";
--fluent-document-page-break-regular-24: "\f3a2";
--fluent-document-page-number-regular-20: "\f3a3";
--fluent-document-page-number-regular-24: "\f3a4";
--fluent-document-page-top-center-regular-20: "\f3a5";
--fluent-document-page-top-center-regular-24: "\f3a6";
--fluent-document-page-top-left-regular-20: "\f3a7";
--fluent-document-page-top-left-regular-24: "\f3a8";
--fluent-document-page-top-right-regular-20: "\f3a9";
--fluent-document-page-top-right-regular-24: "\f3aa";
--fluent-document-pdf-regular-16: "\f3ab";
--fluent-document-pdf-regular-20: "\f3ac";
--fluent-document-pdf-regular-24: "\f3ad";
--fluent-document-search-regular-20: "\f3ae";
--fluent-document-search-regular-24: "\f3af";
--fluent-document-toolbox-regular-20: "\f3b0";
--fluent-document-toolbox-regular-24: "\f3b1";
--fluent-document-width-regular-20: "\f3b8";
--fluent-document-width-regular-24: "\f3b9";
--fluent-double-swipe-down-regular-24: "\f3ba";
--fluent-double-swipe-up-regular-24: "\f3bb";
--fluent-drafts-regular-16: "\f3be";
--fluent-drafts-regular-20: "\f3bf";
--fluent-drafts-regular-24: "\f3c0";
--fluent-drag-regular-24: "\f3c1";
--fluent-drink-beer-regular-24: "\f3c3";
--fluent-drink-coffee-regular-20: "\f3c4";
--fluent-drink-coffee-regular-24: "\f3c5";
--fluent-drink-margarita-regular-24: "\f3c6";
--fluent-drink-wine-regular-24: "\f3c7";
--fluent-dual-screen-regular-24: "\f3c8";
--fluent-dual-screen-add-regular-24: "\f3c9";
--fluent-dual-screen-arrow-right-regular-24: "\f3ca";
--fluent-dual-screen-clock-regular-24: "\f3cb";
--fluent-dual-screen-desktop-regular-24: "\f3cc";
--fluent-dual-screen-group-regular-24: "\f3ce";
--fluent-dual-screen-header-regular-24: "\f3cf";
--fluent-dual-screen-lock-regular-24: "\f3d0";
--fluent-dual-screen-mirror-regular-24: "\f3d1";
--fluent-dual-screen-pagination-regular-24: "\f3d2";
--fluent-dual-screen-settings-regular-24: "\f3d3";
--fluent-dual-screen-status-bar-regular-24: "\f3d4";
--fluent-dual-screen-tablet-regular-24: "\f3d5";
--fluent-dual-screen-update-regular-24: "\f3d6";
--fluent-dual-screen-vertical-scroll-regular-24: "\f3d7";
--fluent-dual-screen-vibrate-regular-24: "\f3d8";
--fluent-earth-regular-16: "\f3d9";
--fluent-earth-regular-20: "\f3da";
--fluent-earth-regular-24: "\f3db";
--fluent-edit-regular-16: "\f3dc";
--fluent-edit-regular-20: "\f3dd";
--fluent-edit-regular-24: "\f3de";
--fluent-emoji-regular-16: "\f3df";
--fluent-emoji-regular-20: "\f3e0";
--fluent-emoji-regular-24: "\f3e1";
--fluent-emoji-add-regular-24: "\f3e2";
--fluent-emoji-angry-regular-20: "\f3e3";
--fluent-emoji-angry-regular-24: "\f3e4";
--fluent-emoji-laugh-regular-20: "\f3e5";
--fluent-emoji-laugh-regular-24: "\f3e6";
--fluent-emoji-meh-regular-20: "\f3e7";
--fluent-emoji-meh-regular-24: "\f3e8";
--fluent-emoji-sad-regular-20: "\f3e9";
--fluent-emoji-sad-regular-24: "\f3ea";
--fluent-emoji-surprise-regular-20: "\f3eb";
--fluent-emoji-surprise-regular-24: "\f3ec";
--fluent-eraser-tool-regular-24: "\f3ef";
--fluent-error-circle-regular-16: "\f3f0";
--fluent-error-circle-regular-20: "\f3f1";
--fluent-error-circle-regular-24: "\f3f2";
--fluent-extended-dock-regular-24: "\f3f4";
--fluent-extension-regular-20: "\f3f5";
--fluent-extension-regular-24: "\f3f6";
--fluent-eye-hide-regular-20: "\f3f7";
--fluent-eye-hide-regular-24: "\f3f8";
--fluent-eye-show-regular-12: "\f3f9";
--fluent-eye-show-regular-16: "\f3fa";
--fluent-eye-show-regular-20: "\f3fb";
--fluent-eye-show-regular-24: "\f3fc";
--fluent-fast-acceleration-regular-24: "\f3fd";
--fluent-fast-forward-regular-20: "\f3fe";
--fluent-fast-forward-regular-24: "\f3ff";
--fluent-filter-regular-20: "\f406";
--fluent-filter-regular-24: "\f407";
--fluent-filter-regular-28: "\f408";
--fluent-fingerprint-regular-24: "\f409";
--fluent-flag-regular-16: "\f40a";
--fluent-flag-regular-20: "\f40b";
--fluent-flag-regular-24: "\f40c";
--fluent-flag-regular-28: "\f40d";
--fluent-flag-regular-48: "\f40e";
--fluent-flag-off-regular-24: "\f40f";
--fluent-flag-off-regular-28: "\f410";
--fluent-flag-off-regular-48: "\f411";
--fluent-flash-auto-regular-24: "\f412";
--fluent-flash-off-regular-24: "\f413";
--fluent-flash-on-regular-20: "\f414";
--fluent-flash-on-regular-24: "\f415";
--fluent-flashlight-regular-24: "\f416";
--fluent-flashlight-off-regular-24: "\f417";
--fluent-folder-regular-20: "\f418";
--fluent-folder-regular-24: "\f419";
--fluent-folder-regular-28: "\f41a";
--fluent-folder-regular-48: "\f41b";
--fluent-folder-add-regular-20: "\f41c";
--fluent-folder-add-regular-24: "\f41d";
--fluent-folder-add-regular-28: "\f41e";
--fluent-folder-add-regular-48: "\f41f";
--fluent-folder-briefcase-regular-20: "\f420";
--fluent-folder-link-regular-20: "\f425";
--fluent-folder-link-regular-24: "\f426";
--fluent-folder-link-regular-28: "\f427";
--fluent-folder-link-regular-48: "\f428";
--fluent-folder-open-regular-16: "\f42d";
--fluent-folder-open-regular-20: "\f42e";
--fluent-folder-open-regular-24: "\f42f";
--fluent-folder-open-vertical-regular-20: "\f430";
--fluent-folder-zip-regular-16: "\f434";
--fluent-folder-zip-regular-20: "\f435";
--fluent-folder-zip-regular-24: "\f436";
--fluent-font-decrease-regular-20: "\f437";
--fluent-font-decrease-regular-24: "\f438";
--fluent-font-increase-regular-20: "\f439";
--fluent-font-increase-regular-24: "\f43a";
--fluent-font-space-tracking-in-regular-16: "\f43b";
--fluent-font-space-tracking-in-regular-20: "\f43c";
--fluent-font-space-tracking-in-regular-24: "\f43d";
--fluent-font-space-tracking-in-regular-28: "\f43e";
--fluent-font-space-tracking-out-regular-16: "\f43f";
--fluent-font-space-tracking-out-regular-20: "\f440";
--fluent-font-space-tracking-out-regular-24: "\f441";
--fluent-font-space-tracking-out-regular-28: "\f442";
--fluent-food-regular-20: "\f443";
--fluent-food-regular-24: "\f444";
--fluent-food-cake-regular-24: "\f445";
--fluent-food-egg-regular-24: "\f446";
--fluent-food-toast-regular-24: "\f447";
--fluent-form-new-regular-24: "\f448";
--fluent-form-new-regular-28: "\f449";
--fluent-form-new-regular-48: "\f44a";
--fluent-fps-240-regular-24: "\f44d";
--fluent-fps-960-regular-24: "\f44e";
--fluent-games-regular-24: "\f451";
--fluent-gesture-regular-24: "\f452";
--fluent-gif-regular-20: "\f453";
--fluent-gif-regular-24: "\f454";
--fluent-gift-regular-20: "\f455";
--fluent-gift-regular-24: "\f456";
--fluent-glance-regular-24: "\f457";
--fluent-glasses-regular-24: "\f458";
--fluent-glasses-off-regular-24: "\f459";
--fluent-globe-regular-20: "\f45a";
--fluent-globe-regular-24: "\f45b";
--fluent-globe-add-regular-24: "\f45c";
--fluent-globe-clock-regular-24: "\f45d";
--fluent-globe-desktop-regular-24: "\f45e";
--fluent-globe-location-regular-24: "\f45f";
--fluent-globe-search-regular-24: "\f460";
--fluent-globe-video-regular-24: "\f461";
--fluent-grid-regular-20: "\f462";
--fluent-grid-regular-24: "\f463";
--fluent-grid-regular-28: "\f464";
--fluent-group-regular-20: "\f465";
--fluent-group-regular-24: "\f466";
--fluent-group-list-regular-24: "\f467";
--fluent-guest-regular-16: "\f468";
--fluent-guest-regular-20: "\f469";
--fluent-guest-regular-24: "\f46a";
--fluent-guest-regular-28: "\f46b";
--fluent-guest-add-regular-24: "\f46c";
--fluent-handshake-regular-16: "\f46e";
--fluent-handshake-regular-20: "\f46f";
--fluent-handshake-regular-24: "\f470";
--fluent-hdr-regular-24: "\f471";
--fluent-headphones-regular-24: "\f472";
--fluent-headphones-regular-28: "\f473";
--fluent-headset-regular-24: "\f474";
--fluent-headset-regular-28: "\f475";
--fluent-headset-vr-regular-20: "\f476";
--fluent-headset-vr-regular-24: "\f477";
--fluent-heart-regular-16: "\f478";
--fluent-heart-regular-20: "\f479";
--fluent-heart-regular-24: "\f47a";
--fluent-highlight-regular-16: "\f47b";
--fluent-highlight-regular-20: "\f47c";
--fluent-highlight-regular-24: "\f47d";
--fluent-history-regular-20: "\f47e";
--fluent-history-regular-24: "\f47f";
--fluent-home-regular-20: "\f480";
--fluent-home-regular-24: "\f481";
--fluent-home-regular-28: "\f482";
--fluent-home-add-regular-24: "\f483";
--fluent-home-checkmark-regular-24: "\f484";
--fluent-icons-regular-20: "\f485";
--fluent-icons-regular-24: "\f486";
--fluent-image-regular-16: "\f487";
--fluent-image-regular-20: "\f488";
--fluent-image-regular-24: "\f489";
--fluent-image-regular-28: "\f48a";
--fluent-image-regular-48: "\f48b";
--fluent-image-add-regular-24: "\f48c";
--fluent-image-alt-text-regular-20: "\f48d";
--fluent-image-alt-text-regular-24: "\f48e";
--fluent-image-copy-regular-20: "\f48f";
--fluent-image-copy-regular-24: "\f490";
--fluent-image-copy-regular-28: "\f491";
--fluent-image-edit-regular-16: "\f492";
--fluent-image-edit-regular-20: "\f493";
--fluent-image-edit-regular-24: "\f494";
--fluent-image-off-regular-24: "\f498";
--fluent-image-search-regular-20: "\f499";
--fluent-image-search-regular-24: "\f49a";
--fluent-immersive-reader-regular-20: "\f49b";
--fluent-immersive-reader-regular-24: "\f49c";
--fluent-important-regular-12: "\f49d";
--fluent-important-regular-16: "\f49e";
--fluent-important-regular-20: "\f49f";
--fluent-important-regular-24: "\f4a0";
--fluent-incognito-regular-24: "\f4a1";
--fluent-info-regular-16: "\f4a2";
--fluent-info-regular-20: "\f4a3";
--fluent-info-regular-24: "\f4a4";
--fluent-info-regular-28: "\f4a5";
--fluent-inking-tool-regular-16: "\f4a6";
--fluent-inking-tool-regular-20: "\f4a7";
--fluent-inking-tool-regular-24: "\f4a8";
--fluent-inprivate-account-regular-16: "\f4a9";
--fluent-inprivate-account-regular-20: "\f4aa";
--fluent-inprivate-account-regular-24: "\f4ab";
--fluent-inprivate-account-regular-28: "\f4ac";
--fluent-insert-regular-20: "\f4ad";
--fluent-ios-arrow-left-regular-24: "\f4b0";
--fluent-ios-chevron-right-regular-20: "\f4b2";
--fluent-javascript-regular-16: "\f4b3";
--fluent-javascript-regular-20: "\f4b4";
--fluent-javascript-regular-24: "\f4b5";
--fluent-key-regular-20: "\f4b6";
--fluent-key-regular-24: "\f4b7";
--fluent-keyboard-regular-20: "\f4b8";
--fluent-keyboard-regular-24: "\f4b9";
--fluent-keyboard-dock-regular-24: "\f4ba";
--fluent-keyboard-layout-float-regular-24: "\f4bb";
--fluent-keyboard-layout-one-handed-left-regular-24: "\f4bc";
--fluent-keyboard-layout-resize-regular-24: "\f4bd";
--fluent-keyboard-layout-split-regular-24: "\f4be";
--fluent-keyboard-shift-regular-24: "\f4bf";
--fluent-keyboard-shift-uppercase-regular-24: "\f4c0";
--fluent-keyboard-tab-regular-24: "\f4c1";
--fluent-laptop-regular-16: "\f4c2";
--fluent-laptop-regular-20: "\f4c3";
--fluent-laptop-regular-24: "\f4c4";
--fluent-laptop-regular-28: "\f4c5";
--fluent-lasso-regular-24: "\f4c9";
--fluent-launcher-settings-regular-24: "\f4ca";
--fluent-layer-regular-20: "\f4cb";
--fluent-layer-regular-24: "\f4cc";
--fluent-leaf-two-regular-16: "\f4d0";
--fluent-leaf-two-regular-20: "\f4d1";
--fluent-leaf-two-regular-24: "\f4d2";
--fluent-library-regular-24: "\f4d3";
--fluent-library-regular-28: "\f4d4";
--fluent-lightbulb-regular-16: "\f4d5";
--fluent-lightbulb-regular-20: "\f4d6";
--fluent-lightbulb-regular-24: "\f4d7";
--fluent-lightbulb-circle-regular-24: "\f4d8";
--fluent-lightbulb-filament-regular-16: "\f4d9";
--fluent-lightbulb-filament-regular-20: "\f4da";
--fluent-lightbulb-filament-regular-24: "\f4db";
--fluent-likert-regular-16: "\f4dd";
--fluent-likert-regular-20: "\f4de";
--fluent-likert-regular-24: "\f4df";
--fluent-line-horizontal-1-regular-20: "\f4e0";
--fluent-line-horizontal-3-regular-20: "\f4e1";
--fluent-line-horizontal-5-regular-20: "\f4e2";
--fluent-link-regular-16: "\f4e3";
--fluent-link-regular-20: "\f4e4";
--fluent-link-regular-24: "\f4e5";
--fluent-link-regular-28: "\f4e6";
--fluent-link-regular-48: "\f4e7";
--fluent-link-edit-regular-16: "\f4e8";
--fluent-link-edit-regular-20: "\f4e9";
--fluent-link-edit-regular-24: "\f4ea";
--fluent-link-square-regular-24: "\f4ec";
--fluent-list-regular-20: "\f4ed";
--fluent-list-regular-24: "\f4ee";
--fluent-list-regular-28: "\f4ef";
--fluent-live-regular-20: "\f4f0";
--fluent-live-regular-24: "\f4f1";
--fluent-local-language-regular-16: "\f4f2";
--fluent-local-language-regular-20: "\f4f3";
--fluent-local-language-regular-24: "\f4f4";
--fluent-local-language-regular-28: "\f4f5";
--fluent-location-regular-12: "\f4f6";
--fluent-location-regular-16: "\f4f7";
--fluent-location-regular-20: "\f4f8";
--fluent-location-regular-24: "\f4f9";
--fluent-location-regular-28: "\f4fa";
--fluent-location-live-regular-20: "\f4fb";
--fluent-location-live-regular-24: "\f4fc";
--fluent-lock-shield-regular-20: "\f502";
--fluent-lock-shield-regular-24: "\f503";
--fluent-lock-shield-regular-48: "\f504";
--fluent-mail-regular-20: "\f506";
--fluent-mail-regular-24: "\f507";
--fluent-mail-regular-28: "\f508";
--fluent-mail-regular-48: "\f509";
--fluent-mail-add-regular-24: "\f50a";
--fluent-mail-all-regular-20: "\f50b";
--fluent-mail-all-regular-24: "\f50c";
--fluent-mail-all-read-regular-20: "\f50e";
--fluent-mail-all-unread-regular-20: "\f50f";
--fluent-mail-clock-regular-20: "\f510";
--fluent-mail-copy-regular-20: "\f511";
--fluent-mail-copy-regular-24: "\f512";
--fluent-mail-inbox-regular-16: "\f513";
--fluent-mail-inbox-regular-20: "\f514";
--fluent-mail-inbox-regular-24: "\f515";
--fluent-mail-inbox-regular-28: "\f516";
--fluent-mail-inbox-add-regular-16: "\f517";
--fluent-mail-inbox-add-regular-20: "\f518";
--fluent-mail-inbox-add-regular-24: "\f519";
--fluent-mail-inbox-add-regular-28: "\f51a";
--fluent-mail-inbox-dismiss-regular-16: "\f51b";
--fluent-mail-inbox-dismiss-regular-20: "\f51c";
--fluent-mail-inbox-dismiss-regular-24: "\f51d";
--fluent-mail-inbox-dismiss-regular-28: "\f51e";
--fluent-mail-read-regular-20: "\f521";
--fluent-mail-read-regular-24: "\f522";
--fluent-mail-read-regular-28: "\f523";
--fluent-mail-read-regular-48: "\f524";
--fluent-mail-unread-regular-16: "\f525";
--fluent-mail-unread-regular-20: "\f526";
--fluent-mail-unread-regular-24: "\f527";
--fluent-mail-unread-regular-28: "\f528";
--fluent-mail-unread-regular-48: "\f529";
--fluent-map-regular-24: "\f52e";
--fluent-map-drive-regular-16: "\f52f";
--fluent-map-drive-regular-20: "\f530";
--fluent-map-drive-regular-24: "\f531";
--fluent-match-app-layout-regular-24: "\f532";
--fluent-maximize-regular-16: "\f533";
--fluent-meet-now-regular-20: "\f534";
--fluent-meet-now-regular-24: "\f535";
--fluent-megaphone-regular-16: "\f536";
--fluent-megaphone-regular-20: "\f537";
--fluent-megaphone-regular-24: "\f538";
--fluent-megaphone-regular-28: "\f539";
--fluent-megaphone-off-regular-24: "\f53a";
--fluent-mention-regular-16: "\f53b";
--fluent-mention-regular-20: "\f53c";
--fluent-mention-regular-24: "\f53d";
--fluent-merge-regular-24: "\f53e";
--fluent-mic-off-regular-12: "\f53f";
--fluent-mic-off-regular-16: "\f540";
--fluent-mic-off-regular-24: "\f541";
--fluent-mic-off-regular-28: "\f542";
--fluent-mic-on-regular-16: "\f543";
--fluent-mic-on-regular-20: "\f544";
--fluent-mic-on-regular-24: "\f545";
--fluent-mic-on-regular-28: "\f546";
--fluent-mic-on-regular-48: "\f547";
--fluent-mic-settings-regular-24: "\f548";
--fluent-midi-regular-20: "\f549";
--fluent-midi-regular-24: "\f54a";
--fluent-mobile-optimized-regular-24: "\f54d";
--fluent-money-regular-16: "\f54e";
--fluent-money-regular-20: "\f54f";
--fluent-money-regular-24: "\f550";
--fluent-more-vertical-regular-20: "\f556";
--fluent-more-vertical-regular-24: "\f557";
--fluent-more-vertical-regular-28: "\f558";
--fluent-more-vertical-regular-48: "\f559";
--fluent-movies-and-tv-regular-24: "\f55a";
--fluent-multiselect-regular-20: "\f55b";
--fluent-multiselect-regular-24: "\f55c";
--fluent-my-location-regular-24: "\f55f";
--fluent-navigation-regular-20: "\f560";
--fluent-navigation-regular-24: "\f561";
--fluent-network-check-regular-24: "\f562";
--fluent-new-regular-16: "\f563";
--fluent-new-regular-24: "\f564";
--fluent-news-regular-20: "\f565";
--fluent-news-regular-24: "\f566";
--fluent-news-regular-28: "\f567";
--fluent-next-regular-16: "\f568";
--fluent-next-regular-20: "\f569";
--fluent-next-regular-24: "\f56a";
--fluent-note-regular-20: "\f56b";
--fluent-note-regular-24: "\f56c";
--fluent-note-add-regular-16: "\f56d";
--fluent-note-add-regular-20: "\f56e";
--fluent-note-add-regular-24: "\f56f";
--fluent-notebook-regular-24: "\f570";
--fluent-notebook-error-regular-24: "\f571";
--fluent-notebook-lightning-regular-24: "\f572";