forked from iconify/icon-sets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci.json
1718 lines (1718 loc) · 139 KB
/
ci.json
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
{
"prefix": "ci",
"info": {
"name": "coolicons",
"total": 412,
"version": "2.5",
"author": {
"name": "Kryston Schwarze",
"url": "https://github.com/krystonschwarze/coolicons"
},
"license": {
"title": "CC BY 4.0",
"spdx": "CC-BY-4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
},
"samples": [
"building",
"search-small-plus",
"group"
],
"height": 24,
"category": "General",
"palette": false
},
"lastModified": 1665515631,
"icons": {
"add-column": {
"body": "<path fill=\"currentColor\" d=\"M14 4v8.101a7.018 7.018 0 0 0-2-1.427V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-4c-.033 0-.066 0-.099-.002A7.017 7.017 0 0 0 15.326 20H18V4h-4Z\"/><path fill=\"currentColor\" d=\"M14 17a5 5 0 1 1-10 0a5 5 0 0 1 10 0Zm-4 3v-2h2v-2h-2v-2H8v2H6v2h2v2h2Z\"/>"
},
"add-row": {
"body": "<path fill=\"currentColor\" d=\"M7 14A5 5 0 1 1 7 4a5 5 0 0 1 0 10Zm-3-4h2v2h2v-2h2V8H8V6H6v2H4v2Z\"/><path fill=\"currentColor\" d=\"M20 14h-8.101a7.018 7.018 0 0 0 1.427-2H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4c0-.033 0-.066.002-.099A7.018 7.018 0 0 0 4 15.326V18h16v-4Z\"/>"
},
"add-to-queue": {
"body": "<path fill=\"currentColor\" d=\"M16 22H4a2 2 0 0 1-2-2V8h2v12h12v2Zm4-4H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM8 4v12h12V4H8Zm7 10h-2v-3h-3V9h3V6h2v3h3v2h-3v3Z\"/>"
},
"adobe-xd": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4ZM6 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6Zm9.762 12.776a3.188 3.188 0 0 1-2.351-.9a3.762 3.762 0 0 1-.928-2.69a3.8 3.8 0 0 1 .955-2.6a3.422 3.422 0 0 1 2.587-1.069h.233v-2c0-.156.127-.283.283-.284h1.317a.29.29 0 0 1 .2.07a.263.263 0 0 1 .082.2v7.679c-.005.265.009.53.04.793V16a.286.286 0 0 1-.056.177a.34.34 0 0 1-.121.094a5.188 5.188 0 0 1-2.222.506l-.019-.001Zm-.916-5.116l-.005.006a2.222 2.222 0 0 0-.45 1.455a2.264 2.264 0 0 0 .443 1.524c.267.294.652.454 1.049.434a1.63 1.63 0 0 0 .375-.038v-3.849a1.31 1.31 0 0 0-.284-.029a1.436 1.436 0 0 0-1.128.5v-.003Zm-2.621 5h-1.451a.358.358 0 0 1-.354-.22l-.21-.44l-.005-.011L10 15.58l-.064-.133c-.319-.658-.648-1.336-.978-2.034a125.419 125.419 0 0 1-1.417 3.031v.01l-.005.009a.4.4 0 0 1-.136.137a.354.354 0 0 1-.188.05H5.841a.264.264 0 0 1-.263-.179a.282.282 0 0 1 .043-.245l2.229-4.261l-2.156-4.314a.27.27 0 0 1-.012-.288a.273.273 0 0 1 .234-.131H7.35a.372.372 0 0 1 .2.046a.33.33 0 0 1 .136.163c.536 1.125.988 2.1 1.383 2.965c.491-1.1 1.013-2.218 1.363-2.959l.005-.011l.006-.01v-.011a.495.495 0 0 1 .093-.115a.332.332 0 0 1 .221-.077H12.1a.266.266 0 0 1 .247.151a.285.285 0 0 1-.023.263l-2.157 4.187l2.282 4.4a.3.3 0 0 1 .029.259a.266.266 0 0 1-.253.175v.002Z\"/>"
},
"airplay": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6l6-6l6 6ZM7 19H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4v-2h4V5H3v12h4v2Z\"/>"
},
"alarm": {
"body": "<path fill=\"currentColor\" d=\"M11.999 22a9.121 9.121 0 0 1-9-9a9.121 9.121 0 0 1 9-9a9.121 9.121 0 0 1 9 9a9.121 9.121 0 0 1-9 9Zm0-16a7.094 7.094 0 0 0-7 7a7.094 7.094 0 0 0 7 7a7.094 7.094 0 0 0 7-7a7.094 7.094 0 0 0-7-7Zm5 8h-6V8h2v4h4v2Zm3.292-7.292l-3.009-3l1.409-1.417l3.01 3l-1.41 1.416v.001Zm-16.585 0L2.291 5.291l2.991-3l1.415 1.417l-2.989 3h-.002Z\"/>"
},
"alarm-add": {
"body": "<path fill=\"currentColor\" d=\"M12 22a9.121 9.121 0 0 1-9-9a9.121 9.121 0 0 1 9-9a9.121 9.121 0 0 1 9 9a9.121 9.121 0 0 1-9 9Zm0-16a7.094 7.094 0 0 0-7 7a7.094 7.094 0 0 0 7 7a7.094 7.094 0 0 0 7-7a7.094 7.094 0 0 0-7-7Zm1 12h-2v-4H7v-2h4V8h2v4h4v2h-4v4Zm7.292-11.292l-3.009-3l1.409-1.417l3.01 3l-1.41 1.416v.001Zm-16.583 0L2.292 5.291l2.991-3l1.415 1.416l-2.989 3v.001Z\"/>"
},
"app-store": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-4.273-7.213c-.129 0-.257.016-.383.046l-.15.041l-.594 1.017a.823.823 0 0 0 1.365.916l.062-.093l.79-1.371a1.386 1.386 0 0 0-1.1-.556h.01Zm5.484-6.127a1.944 1.944 0 0 0-.587 1.1a2.4 2.4 0 0 0 .3 1.689l3.04 5.266a.827.827 0 0 0 1.071.322a.823.823 0 0 0 .4-1.044l-.049-.1l-.8-1.391h1.19a.823.823 0 0 0 .1-1.639l-.1-.006h-2.14l-2.194-3.8l-.229-.4l-.002.003ZM6.26 12.85a.817.817 0 0 0-.815.821c0 .414.308.764.719.817l.1.005h7.48a1.16 1.16 0 0 0-.017-1.067a1.034 1.034 0 0 0-.793-.571l-.121-.006h-2.551L13.79 6.74a.828.828 0 0 0 .082-.625a.824.824 0 0 0-1.447-.29l-.062.092l-.363.634l-.359-.634a.827.827 0 0 0-1.072-.322a.825.825 0 0 0-.4 1.045l.049.1l.83 1.46l-2.685 4.65H6.26Z\"/>"
},
"apple": {
"body": "<path fill=\"currentColor\" d=\"M9.094 21.006a2.457 2.457 0 0 1-1.653-.766a9.899 9.899 0 0 1-1.377-1.648a11.406 11.406 0 0 1-1.459-2.893a10.653 10.653 0 0 1-.61-3.445a6.317 6.317 0 0 1 .825-3.292a4.88 4.88 0 0 1 1.73-1.751a4.663 4.663 0 0 1 2.344-.662a5.51 5.51 0 0 1 1.81.421c.459.202.941.344 1.436.422a8.564 8.564 0 0 0 1.593-.5a5.79 5.79 0 0 1 1.903-.393c.087 0 .173 0 .256.01c1.43.041 2.76.743 3.6 1.9a4.02 4.02 0 0 0-2.123 3.637a4.022 4.022 0 0 0 1.317 3.023a4.38 4.38 0 0 0 1.316.863c-.1.3-.215.59-.337.882a10.38 10.38 0 0 1-1.02 1.837a9.437 9.437 0 0 1-1.317 1.592a2.57 2.57 0 0 1-1.692.743a4.249 4.249 0 0 1-1.562-.373a4.501 4.501 0 0 0-1.68-.373a4.647 4.647 0 0 0-1.73.371a4.656 4.656 0 0 1-1.495.393l-.075.002Zm3.15-14.507c-.075 0-.15 0-.225-.009a2.893 2.893 0 0 1-.025-.359a4.17 4.17 0 0 1 1.1-2.688a4.277 4.277 0 0 1 1.35-1.009a4.03 4.03 0 0 1 1.535-.435c.015.131.015.259.015.381a4.071 4.071 0 0 1-1.04 2.66a3.643 3.643 0 0 1-2.71 1.459Z\"/>"
},
"bar-bottom": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 16v3h14v-3H5ZM5 5v9h14V5H5Z\"/>"
},
"bar-chart": {
"body": "<path fill=\"currentColor\" d=\"M21 21h-3V11h3v10Zm-5 0h-3V8h3v13Zm-5 0H8V5h3v16Zm-5 0H3v-8h3v8Z\"/>"
},
"bar-chart-alt": {
"body": "<path fill=\"currentColor\" d=\"M22 21H2V11a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v3h4a2 2 0 0 1 2 2v12ZM16 9v10h4V9h-4Zm-6-5v15h4V4h-4Zm-6 7v8h4v-8H4Z\"/>"
},
"bar-chart-circle": {
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 20a8 8 0 1 1 0-16a8 8 0 0 1 0 16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12Zm13 4h2V9h-2v7Zm-8 0h2v-5H7v5Zm4 0h2V6h-2v10Z\" clip-rule=\"evenodd\"/>"
},
"bar-chart-horizontal": {
"body": "<path fill=\"currentColor\" d=\"M4 22H2V2h2v20Zm11-1H5v-3h10v3Zm3-5H5v-3h13v3Zm3-5H5V8h16v3Zm-8-5H5V3h8v3Z\"/>"
},
"bar-chart-square": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 5v14h14V5H5Zm12 12h-2v-7h2v7Zm-4 0h-2V7h2v10Zm-4 0H7v-5h2v5Z\"/>"
},
"bar-left": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM10 5v14h9V5h-9ZM5 5v14h3V5H5Z\"/>"
},
"bar-right": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM16 5v14h3V5h-3ZM5 5v14h9V5H5Z\"/>"
},
"bar-top": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v9h14v-9H5Zm0-5v3h14V5H5Z\"/>"
},
"barcode": {
"body": "<path fill=\"currentColor\" d=\"M2 4h3v16H2V4Zm4 0h1v16H6V4Zm5 0H9v16h2V4Zm1 0h2v16h-2V4Zm3 0h1v16h-1V4Zm5 0h-3v16h3V4Zm1 0h1v16h-1V4Z\"/>"
},
"behance": {
"body": "<path fill=\"currentColor\" d=\"M17.669 18.268a5.163 5.163 0 0 1-1.9-.337a4.024 4.024 0 0 1-1.439-.958a4.348 4.348 0 0 1-.905-1.485a5.461 5.461 0 0 1-.319-1.9a5.244 5.244 0 0 1 .328-1.864a4.358 4.358 0 0 1 .934-1.493a4.46 4.46 0 0 1 1.444-.994a4.6 4.6 0 0 1 1.858-.363a4.262 4.262 0 0 1 1.979.44a3.983 3.983 0 0 1 1.39 1.183c.369.507.635 1.082.783 1.691c.162.648.22 1.317.171 1.983h-6.431c-.026.633.191 1.25.606 1.729a2.186 2.186 0 0 0 1.584.538c.454.01.9-.12 1.278-.373c.3-.183.53-.46.653-.789h2.155a4.108 4.108 0 0 1-1.588 2.3a4.642 4.642 0 0 1-2.581.692Zm-.069-7.544a2.092 2.092 0 0 0-.974.2c-.238.12-.449.287-.62.49c-.15.185-.263.399-.328.628a2.812 2.812 0 0 0-.111.587h3.982a2.377 2.377 0 0 0-.563-1.409a1.834 1.834 0 0 0-1.386-.496Zm-9.63 7.312H2V5.731h5.8a7.645 7.645 0 0 1 1.6.155c.446.087.87.26 1.251.508a2.4 2.4 0 0 1 .8.939c.2.454.295.947.28 1.443a2.71 2.71 0 0 1-.417 1.555c-.32.443-.755.792-1.256 1.011c.681.17 1.28.577 1.69 1.147c.38.587.573 1.276.552 1.975a3.418 3.418 0 0 1-.358 1.614c-.23.444-.564.826-.974 1.113a4.32 4.32 0 0 1-1.4.64a6.28 6.28 0 0 1-1.603.206l.005-.001Zm-3.26-5.483v3.39H7.6c.255.003.51-.023.76-.077c.229-.044.446-.133.64-.262a1.29 1.29 0 0 0 .44-.491c.118-.25.173-.524.162-.8a1.614 1.614 0 0 0-.534-1.358a2.286 2.286 0 0 0-1.414-.4l-2.944-.002Zm0-4.725v2.875h2.742c.424.017.842-.104 1.192-.345a1.3 1.3 0 0 0 .464-1.119a1.487 1.487 0 0 0-.152-.708a1.122 1.122 0 0 0-.417-.428a1.677 1.677 0 0 0-.6-.215a3.575 3.575 0 0 0-.7-.061l-2.529.001Zm15.341-.056h-4.99V6.557h4.99v1.215Z\"/>"
},
"black-lives-matter": {
"body": "<path fill=\"currentColor\" d=\"M11.172 3.703a.6.6 0 0 0-.162-.817l-1.18-.792a.551.551 0 0 0-.775.167l-1.46 2.273L9.88 5.719l1.293-2.016Zm2.005 3.729l1.068-1.664a.6.6 0 0 0-.163-.817l-1.178-.792a.551.551 0 0 0-.776.167l-1.232 1.921l2.281 1.185Zm1.289 3.426l-1.033-.477a.597.597 0 0 1-.24-.86L15.2 6.39a.551.551 0 0 1 .776-.167l.935.63a.6.6 0 0 1 .163.816l-1.91 2.977a.552.552 0 0 1-.699.21Zm5.276-2.102l-.935-.63a.551.551 0 0 0-.776.168l-1.713 2.67a.597.597 0 0 0 .24.86l1.033.476a.552.552 0 0 0 .699-.21l1.615-2.517a.6.6 0 0 0-.163-.817Z\"/><path fill=\"currentColor\" d=\"M17.133 13.371c.218.101.449.152.687.152a1.66 1.66 0 0 0 1.236-.558v1.715a3.488 3.488 0 0 1-1.482 2.877l-.351.243a.593.593 0 0 0-.25.487v3.127a.575.575 0 0 1-.564.586H7.878c-.367 0-.636-.358-.547-.728l1.031-4.286a.604.604 0 0 0-.094-.49l-4.157-5.83a.605.605 0 0 1-.016-.675L6.69 5.947a.552.552 0 0 1 .722-.199l4.563 2.37a.598.598 0 0 1 .217.85l-.345.537a.559.559 0 0 1-.47.261H7.816a.577.577 0 0 0-.564.614a.584.584 0 0 0 .58.558h2.413l2.615 5.432c.135.282.461.417.739.289c.296-.136.42-.5.277-.798l-2.37-4.923h.357l5.27 2.433Z\"/>"
},
"bold": {
"body": "<path fill=\"currentColor\" d=\"M6 4h6.5a4.5 4.5 0 0 1 3.256 7.606A4.5 4.5 0 0 1 13.5 20H6v-2h1V6H6V4Zm3 7h3.5a2.5 2.5 0 0 0 0-5H9v5Zm0 2v5h4.5a2.5 2.5 0 0 0 0-5H9Z\"/>"
},
"building": {
"body": "<path fill=\"currentColor\" d=\"M20 21H4a1 1 0 0 1-1-1v-7.3a1 1 0 0 1 .341-.752L5 10.5V4a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1ZM9 7.329a1 1 0 0 1 .658.248l5 4.375A1 1 0 0 1 15 12.7V19h4V5H7v3.75l1.341-1.174A1 1 0 0 1 9 7.329ZM8 16h2v3h3v-5.843l-4-3.5l-4 3.5V19h3v-3Z\"/>"
},
"bulb": {
"body": "<path fill=\"currentColor\" d=\"M15 22H9v-2h6v2Zm0-3H9l-.223-2a8.461 8.461 0 0 0-.591-1.921c-.354-.5-.723-.927-1.08-1.344A6.666 6.666 0 0 1 5 9a7 7 0 0 1 14 0a6.693 6.693 0 0 1-2.093 4.711l-.017.02a17.69 17.69 0 0 0-1.071 1.344A8.6 8.6 0 0 0 15.226 17L15 19ZM12 4a5.006 5.006 0 0 0-5 5c0 1.544.644 2.293 1.618 3.428c.37.432.79.92 1.2 1.491A10.21 10.21 0 0 1 10.825 17h2.351a10.461 10.461 0 0 1 1.006-3.075c.4-.571.819-1.062 1.188-1.494l.015-.018C16.357 11.273 17 10.52 17 9a5.006 5.006 0 0 0-5-5Z\"/>"
},
"calendar": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm12 12h-2v-2h2v2Zm-4 0h-2v-2h2v2Zm-4 0H7v-2h2v2Zm8-4h-2v-2h2v2Zm-4 0h-2v-2h2v2Zm-4 0H7v-2h2v2Z\"/>"
},
"calendar-calendar": {
"body": "<path fill=\"currentColor\" d=\"M18.999 22h-14a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2Zm-14-12v10h14V10h-14Zm0-4v2h14V6h-14Z\"/>"
},
"calendar-check": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm6 12.414l-3.707-3.707l1.414-1.414L11 15.586l4.293-4.293l1.414 1.414L11 18.413v.001Z\"/>"
},
"calendar-edit": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm4.8 13H8v-1.8l4.2-4.19l1.8 1.8L9.8 19Zm4.825-4.818l-1.8-1.8l1.375-1.369l1.8 1.8l-1.37 1.37l-.005-.001Z\"/>"
},
"calendar-event": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm8 12H7v-6h6v6Z\"/>"
},
"calendar-minus": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm10 10H9v-2h6v2Z\"/>"
},
"calendar-plus": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm8 12h-2v-2H9v-2h2v-2h2v2h2v2h-2v2Z\"/>"
},
"calendar-week": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm12 8H7v-2h10v2Z\"/>"
},
"calendar-x": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2V2h2v2h6V2h2v2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 10v10h14V10H5Zm0-4v2h14V6H5Zm4.706 12.707l-1.413-1.414L10.586 15l-2.293-2.293l1.414-1.414L12 13.586l2.293-2.292l1.414 1.414L13.414 15l2.293 2.293l-1.413 1.413L12 16.414l-2.293 2.293h-.001Z\"/>"
},
"caret-down": {
"body": "<path fill=\"currentColor\" d=\"m12 14.5l5-5H7l5 5Z\"/>"
},
"caret-left": {
"body": "<path fill=\"currentColor\" d=\"m9.5 12l5 5V7l-5 5Z\"/>"
},
"caret-right": {
"body": "<path fill=\"currentColor\" d=\"m14.5 12l-5-5v10l5-5Z\"/>"
},
"caret-up": {
"body": "<path fill=\"currentColor\" d=\"m12 9.5l-5 5h10l-5-5Z\"/>"
},
"cast": {
"body": "<path fill=\"currentColor\" d=\"M21 21h-7v-2h7V5H3v3H1V5a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2Zm-9 0h-2a8.94 8.94 0 0 0-2.639-6.361A8.939 8.939 0 0 0 1 12v-2a10.929 10.929 0 0 1 7.776 3.22A10.927 10.927 0 0 1 12 21Zm-4 0H6a4.968 4.968 0 0 0-1.466-3.534A4.966 4.966 0 0 0 1 16v-2a6.955 6.955 0 0 1 4.951 2.049A6.956 6.956 0 0 1 8 21Zm-4 0H1v-3a3 3 0 0 1 3 3Z\"/>"
},
"chat": {
"body": "<path fill=\"currentColor\" d=\"M2 4v14l4.8-3.6c.346-.26.767-.4 1.2-.4h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm2 10V4h12v8H7.334a1.984 1.984 0 0 0-1.2.4L4 14Z\"/><path fill=\"currentColor\" d=\"M22 22V9a2 2 0 0 0-2-2v11l-2.134-1.6a1.984 1.984 0 0 0-1.2-.4H7a2 2 0 0 0 2 2h7c.433 0 .854.14 1.2.4L22 22Z\"/>"
},
"chat-alt": {
"body": "<path fill=\"currentColor\" d=\"M16 2a2 2 0 0 1 2 2H4v11.177a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12Z\"/><path fill=\"currentColor\" d=\"m14 22l-2.667-2.823H8a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.177a2 2 0 0 1-2 2h-3.333L14 22Zm1.805-4.823H20V8H8v9.177h4.195L14 19.087l1.805-1.91Z\"/>"
},
"check": {
"body": "<path fill=\"currentColor\" d=\"m9.525 17.657l-4.95-4.95l1.414-1.414l3.537 3.534l-.001.001l8.485-8.485l1.414 1.414l-8.485 8.486l-1.413 1.413l-.001.001Z\"/>"
},
"check-all": {
"body": "<path fill=\"currentColor\" d=\"m11.647 18.01l-4.95-4.949l1.413-1.415l3.537 3.537l8.485-8.486l1.414 1.414l-9.9 9.9l.001-.001Zm-4.243 0l-4.95-4.949l1.414-1.415l4.95 4.95l-1.413 1.414Zm4.243-4.242l-1.415-1.414l6.364-6.364l1.415 1.414l-6.364 6.363v.001Z\"/>"
},
"check-all-big": {
"body": "<path fill=\"currentColor\" d=\"m.333 13.065l5.655 5.655l1.41-1.42l-5.65-5.65l-1.415 1.415Zm21.914-7.784l-10.599 10.61l-4.237-4.248l-1.43 1.41l5.667 5.667l12.02-12.019l-1.42-1.42ZM18.01 6.7L16.6 5.28l-6.371 6.37l1.42 1.41l6.36-6.36Z\"/>"
},
"check-big": {
"body": "<path fill=\"currentColor\" d=\"M20.839 6.695L8.818 18.715L3.161 13.06l1.41-1.41l4.247 4.236l10.61-10.6l1.41 1.41Z\"/>"
},
"check-bold": {
"body": "<path fill=\"currentColor\" d=\"m8.818 19.779l-6.364-6.364l2.83-2.83l3.534 3.544l9.898-9.908l2.83 2.83L8.818 19.779Z\"/>"
},
"checkbox": {
"body": "<path fill=\"currentColor\" d=\"M17 19H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2ZM7 7v10h10V7H7Z\"/>"
},
"checkbox-checked": {
"body": "<path fill=\"currentColor\" d=\"M17 19H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2ZM7 7v10h10V7H7Zm4 8.362l-2.7-2.647l1.4-1.43l1.3 1.271l3.3-3.267l1.4 1.422l-4.7 4.65v.001Z\"/>"
},
"checkbox-square": {
"body": "<path fill=\"currentColor\" d=\"M17 19H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2ZM7 7v10h10V7H7Zm8 8H9V9h6v6Z\"/>"
},
"chevron-big-down": {
"body": "<path fill=\"currentColor\" d=\"M3.515 8.465L12 16.95l8.485-8.485L19.07 7.05L12 14.122L4.929 7.05L3.515 8.465Z\"/>"
},
"chevron-big-left": {
"body": "<path fill=\"currentColor\" d=\"M15.535 3.515L7.05 12l8.485 8.485l1.415-1.414L9.878 12l7.072-7.071l-1.415-1.414Z\"/>"
},
"chevron-big-right": {
"body": "<path fill=\"currentColor\" d=\"M8.465 20.485L16.95 12L8.465 3.515L7.05 4.929L14.122 12L7.05 19.071l1.415 1.414Z\"/>"
},
"chevron-big-up": {
"body": "<path fill=\"currentColor\" d=\"M20.485 15.535L12 7.05l-8.485 8.485L4.93 16.95L12 9.878l7.071 7.072l1.414-1.415Z\"/>"
},
"chevron-down": {
"body": "<path fill=\"currentColor\" d=\"m12 15.713l6.01-6.01l-1.413-1.415l-4.597 4.6l-4.596-4.6L5.99 9.702L12 15.713Z\"/>"
},
"chevron-duo-down": {
"body": "<path fill=\"currentColor\" d=\"m12 18.424l-6.01-6.01l1.414-1.415l4.6 4.6l4.6-4.6l1.406 1.415l-6.009 6.01H12ZM12 13L5.99 6.989l1.414-1.414l4.6 4.6l4.6-4.6l1.406 1.414l-6.009 6.01L12 13Z\"/>"
},
"chevron-duo-left": {
"body": "<path fill=\"currentColor\" d=\"M11.585 18.01L5.575 12l6.01-6.01L13 7.404l-4.6 4.6l4.6 4.6l-1.414 1.406h-.001Zm5.425 0L10.999 12l6.011-6.01l1.414 1.414l-4.6 4.6l4.6 4.6l-1.413 1.406h-.001Z\"/>"
},
"chevron-duo-right": {
"body": "<path fill=\"currentColor\" d=\"m12.414 18.01l-1.415-1.413l4.6-4.6l-4.6-4.6l1.415-1.407l6.01 6.01l-6.009 6.01h-.001Zm-5.425 0l-1.414-1.413l4.6-4.6l-4.6-4.593L6.989 5.99L13 12l-6.01 6.01h-.001Z\"/>"
},
"chevron-duo-up": {
"body": "<path fill=\"currentColor\" d=\"M7.403 18.425L5.99 17.01L12 10.999l6.01 6.011l-1.413 1.413l-4.6-4.6l-4.6 4.6l.006.002Zm0-5.424L5.99 11.585L12 5.575l6.01 6.01l-1.413 1.414l-4.6-4.6l-4.6 4.6l.006.002Z\"/>"
},
"chevron-left": {
"body": "<path fill=\"currentColor\" d=\"m8.288 12l6.01 6.01l1.414-1.414l-4.6-4.6l4.6-4.6l-1.414-1.406L8.288 12Z\"/>"
},
"chevron-right": {
"body": "<path fill=\"currentColor\" d=\"m15.713 12l-6.01-6.01l-1.415 1.414l4.6 4.6l-4.6 4.593l1.414 1.414L15.713 12Z\"/>"
},
"chevron-up": {
"body": "<path fill=\"currentColor\" d=\"m12 8.288l-6.01 6.01l1.414 1.415l4.6-4.6l4.6 4.6l1.407-1.415L12 8.288Z\"/>"
},
"circle-check": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22ZM7.41 11.59L6 13l4 4l8-8l-1.41-1.42L10 14.17l-2.59-2.58Z\"/>"
},
"circle-check-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-.016-2H12a8 8 0 1 0-.016 0ZM10 17l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8Z\"/>"
},
"circle-chevron-down": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm-.05 11.5L7 10.55l1.414-1.414l3.536 3.535l3.536-3.535L16.9 10.55l-4.95 4.95Z\"/>"
},
"circle-chevron-left": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8.18v1.783V12a8.009 8.009 0 0 0-8-8Zm1.45 12.9L8.5 11.95L13.45 7l1.414 1.414l-3.536 3.536l3.535 3.536l-1.412 1.414h-.001Z\"/>"
},
"circle-chevron-right": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm-1.45 13l-1.414-1.415l3.535-3.535l-3.535-3.535L10.55 7.1l4.95 4.95L10.551 17h-.001Z\"/>"
},
"circle-chevron-up": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-.016-2H12a8 8 0 1 0-.016 0Zm-3.47-5.136L7.1 13.45l4.95-4.95L17 13.45l-1.414 1.413l-3.536-3.535l-3.535 3.536h-.001Z\"/>"
},
"circle-down": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm0 13l-5-5l1.41-1.41L11 13.17V7h2v6.17l2.59-2.58L17 12l-5 5Z\"/>"
},
"circle-left": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8.18v1.783V12a8.009 8.009 0 0 0-8-8Zm0 13l-5-5l5-5l1.41 1.41L10.83 11H17v2h-6.17l2.58 2.59L12 17Z\"/>"
},
"circle-right": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm0 13l-1.41-1.41L13.17 13H7v-2h6.17l-2.58-2.59L12 7l5 5l-5 5Z\"/>"
},
"circle-up": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-.016-2H12a8 8 0 1 0-.016 0ZM13 17h-2v-6.17l-2.59 2.58L7 12l5-5l5 5l-1.41 1.41L13 10.83V17Z\"/>"
},
"clock": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm5 9h-6V7h2v4h4v2Z\"/>"
},
"close-big": {
"body": "<path fill=\"currentColor\" d=\"M17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41L17.59 5Z\"/>"
},
"close-small": {
"body": "<path fill=\"currentColor\" d=\"M15.59 7L12 10.59L8.41 7L7 8.41L10.59 12L7 15.59L8.41 17L12 13.41L15.59 17L17 15.59L13.41 12L17 8.41L15.59 7Z\"/>"
},
"cloud": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M0 14a6 6 0 0 1 5.025-5.921a8 8 0 0 1 14.738 1.979A5 5 0 0 1 19 20H6a6 6 0 0 1-6-6Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"cloud-check": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M19 20H6a6 6 0 0 1-.974-11.921A8.018 8.018 0 0 1 12 3.999a7.916 7.916 0 0 1 4.962 1.725a8.041 8.041 0 0 1 2.8 4.334A5 5 0 0 1 19 20ZM12 6a6.014 6.014 0 0 0-5.232 3.061L6.3 9.9l-.95.155A4 4 0 0 0 6 18h13a3 3 0 0 0 .46-5.965l-1.316-.2l-.322-1.292A5.988 5.988 0 0 0 12 6Zm-1.472 10.71l-3.5-3.5l1.41-1.41l2.09 2.09l4.6-4.6l1.41 1.41l-6.01 6.009v.001Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"cloud-close": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M19 20H6a6 6 0 0 1-.974-11.921A8.018 8.018 0 0 1 12 3.999a7.916 7.916 0 0 1 4.96 1.725a8.041 8.041 0 0 1 2.8 4.333A5 5 0 0 1 19 20ZM12 6a6.014 6.014 0 0 0-5.232 3.061L6.3 9.9l-.95.155A4 4 0 0 0 6 18h13a3 3 0 0 0 .46-5.965l-1.316-.2l-.322-1.292A5.988 5.988 0 0 0 12 6ZM9.413 16.414L8 15l2.293-2.293L8 10.414L9.414 9l2.293 2.292L14 9l1.414 1.414l-2.293 2.293L15.414 15L14 16.413l-2.294-2.292l-2.292 2.293h-.001Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"cloud-down": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M19 20H6a6 6 0 0 1-.974-11.921A8.018 8.018 0 0 1 12 3.999a7.916 7.916 0 0 1 4.962 1.725a8.041 8.041 0 0 1 2.8 4.334A5 5 0 0 1 19 20ZM12 6a6.014 6.014 0 0 0-5.232 3.061L6.3 9.9l-.95.155A4 4 0 0 0 6 18h13a3 3 0 0 0 .46-5.965l-1.316-.2l-.322-1.292A5.988 5.988 0 0 0 12 6Zm0 10l-4-4h2.55V9h2.9v3H16l-4 4Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"cloud-off": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M18.97 21.971L17 20H6a6 6 0 0 1-.974-11.921l.019-.034L2 5l1.415-1.414l16.97 16.97l-1.414 1.414l-.001.001ZM6.813 9.814l-1.465.239A4 4 0 0 0 6 18h9L6.813 9.814Zm14.987 9.33l-1.46-1.458a3 3 0 0 0-.88-5.649l-1.316-.2l-.322-1.291A6 6 0 0 0 9.3 6.642L7.829 5.173a8 8 0 0 1 11.933 4.885a5 5 0 0 1 2.038 9.085v.001Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"cloud-outline": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M19 20H6a6 6 0 0 1-.974-11.921A8.018 8.018 0 0 1 12 3.999a7.916 7.916 0 0 1 4.96 1.725a8.041 8.041 0 0 1 2.8 4.333A5 5 0 0 1 19 20ZM12 6a6.014 6.014 0 0 0-5.232 3.061L6.3 9.9l-.95.155A4 4 0 0 0 6 18h13a3 3 0 0 0 .46-5.965l-1.316-.2l-.322-1.292A5.988 5.988 0 0 0 12 6Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"cloud-up": {
"body": "<g fill=\"none\"><g clip-path=\"url(#svgIDa)\"><path fill=\"currentColor\" d=\"M19 20H6a6 6 0 0 1-.974-11.921A8.018 8.018 0 0 1 12 3.999a7.916 7.916 0 0 1 4.962 1.725a8.041 8.041 0 0 1 2.8 4.334A5 5 0 0 1 19 20ZM12 6a6.014 6.014 0 0 0-5.232 3.061L6.3 9.9l-.95.155A4 4 0 0 0 6 18h13a3 3 0 0 0 .46-5.965l-1.316-.2l-.322-1.292A5.988 5.988 0 0 0 12 6Zm1.45 10h-2.9v-3H8l4-4l4 4h-2.55v3Z\"/></g><defs><clipPath id=\"svgIDa\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></g>"
},
"code": {
"body": "<path fill=\"currentColor\" d=\"M8.01 18.02L2 12.01L8.01 6l1.415 1.414l-4.6 4.6l4.6 4.6l-1.414 1.406H8.01Zm7.979 0l-1.413-1.413l4.6-4.6l-4.6-4.6L15.99 6L22 12.01l-6.01 6.01h-.001Z\"/>"
},
"coffee-togo": {
"body": "<path fill=\"currentColor\" d=\"M5.13 3.008A2 2 0 0 1 6.866 2h10.268a2 2 0 0 1 1.736 1.008l1.143 2c.648 1.134.049 2.503-1.09 2.887c.005.082.004.164-.002.247l-.857 12A2 2 0 0 1 16.069 22H7.93a2 2 0 0 1-1.995-1.858l-.857-12a2.023 2.023 0 0 1-.003-.247c-1.138-.384-1.737-1.753-1.09-2.887l1.144-2ZM7.074 8l.214 3h9.424l.214-3H7.074Zm.643 9l.214 3h8.138l.214-3H7.717Zm10.56-11l-1.143-2H6.866L5.723 6h12.554Z\"/>"
},
"color": {
"body": "<path fill=\"currentColor\" d=\"M10.75 22H4.917a2.086 2.086 0 0 1-2.084-2.084v-9.7a1.977 1.977 0 0 1-.592-2.558c.9-1.608 1.818-3.193 2.721-4.712A1.976 1.976 0 0 1 6.666 2c.424.004.836.139 1.18.385l.024.015c.412.24 4.392 2.609 7.591 4.512l2.84 1.688l.13.077a372.255 372.255 0 0 1 2.744 1.628a1.963 1.963 0 0 1 .583 2.553c-.883 1.577-1.8 3.162-2.72 4.712a1.983 1.983 0 0 1-1.68.951c-.136 0-.27-.015-.4-.045c-.117.069-.757.48-1.568 1c-1.443.925-3.415 2.19-3.643 2.307a1.976 1.976 0 0 1-.997.217ZM4.5 13.03v6.886c0 .23.187.417.417.417H8.74A485.729 485.729 0 0 1 4.5 13.03Zm1.358-1c.4.687 4.716 8.132 4.752 8.182a.3.3 0 0 0 .38.082c.134-.076 4.193-2.684 4.233-2.71c-.314-.185-2.586-1.539-4.992-2.972L5.838 12l.007.011l.01.017v.006l.003-.004Zm.474-8.13c-.808 1.3-2.616 4.528-2.64 4.587a.312.312 0 0 0 .124.386c.133.079 13.354 7.956 13.48 7.976a.32.32 0 0 0 .048 0a.31.31 0 0 0 .266-.149a414.198 414.198 0 0 0 2.694-4.667a.316.316 0 0 0-.125-.387c-.127-.076-13.323-7.918-13.408-7.955a.314.314 0 0 0-.383.117l-.007.012l-.008.012l-.012.02v.005l-.015.024l-.015.019h.001Zm1.353 5.49a1.666 1.666 0 1 1 1.667-1.67a1.669 1.669 0 0 1-1.667 1.667v.003Z\"/>"
},
"combine-cells": {
"body": "<path fill=\"currentColor\" d=\"M13 6h-2v3h2V6Zm-2 4h2v4h-2v-4Zm2 5h-2v3h2v-3Z\"/><path fill=\"currentColor\" d=\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2 0v14h14V5H5Z\"/>"
},
"command": {
"body": "<path fill=\"currentColor\" d=\"M18 22a4.01 4.01 0 0 1-4-3.961V16h-4v2.02A4 4 0 1 1 6 14h2v-4H6a4 4 0 1 1 4-4.02V8h4V6a4 4 0 1 1 4 4h-2v4h2a4 4 0 0 1 0 8Zm-2-6v2a2 2 0 1 0 2-2h-2ZM6 16a2 2 0 1 0 0 4a1.979 1.979 0 0 0 2-2v-2H6Zm4-6v4h4v-4h-4Zm8-6a1.979 1.979 0 0 0-2 2v2h2a1.979 1.979 0 0 0 2-2a1.98 1.98 0 0 0-2-2ZM6 4a1.979 1.979 0 0 0-2 2a1.979 1.979 0 0 0 2 2h2V6a1.979 1.979 0 0 0-2-2Z\"/>"
},
"confused": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm4 13H8v-2h8v2Zm-7.5-5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3Zm6.993-.014a1.493 1.493 0 1 1 0-2.986a1.493 1.493 0 0 1 0 2.986Z\"/>"
},
"cookie": {
"body": "<path fill=\"currentColor\" d=\"M11.984 22C6.472 21.994 2.006 17.52 2 12c.393.111.8.168 1.208.169a4.101 4.101 0 0 0 3.394-1.757c.692-1 .838-2.281.39-3.412c.287.051.577.077.868.078A4.257 4.257 0 0 0 11.2 5.5a4.166 4.166 0 0 0 .849-3.5c5.514.018 9.969 4.51 9.95 10.032c-.017 5.523-4.501 9.986-10.015 9.968Zm.761-3.432a1.249 1.249 0 0 0 1.639-.672a1.252 1.252 0 0 0-.269-1.362a1.249 1.249 0 0 0-2.104.635a1.25 1.25 0 0 0 .735 1.399Zm-5.833-1.693a1.664 1.664 0 0 0 2.17-.91a1.669 1.669 0 0 0-1.539-2.3a1.667 1.667 0 0 0-1.663 1.668a1.67 1.67 0 0 0 1.012 1.536h.016l.004.006Zm9.416-2.507a1.662 1.662 0 0 0 1.916-.463a1.668 1.668 0 0 0-.342-2.453a1.662 1.662 0 0 0-2.595 1.426c.017.625.38 1.187.943 1.458h-.012l.03.013l.02.008h-.006a.43.43 0 0 1 .042.016l.004-.005Zm-4.344-4.035a.833.833 0 1 0 .323.066l-.018-.008l-.027-.01a.822.822 0 0 0-.278-.048Zm3.744-4.166a1.246 1.246 0 0 0-.254 2.466a1.247 1.247 0 0 0 .739-2.366h-.01a1.24 1.24 0 0 0-.475-.1ZM4.496 9.5a.832.832 0 1 1 .001-1.665a.832.832 0 0 1-.001 1.665ZM3.248 7a1.249 1.249 0 1 1 .002-2.498A1.249 1.249 0 0 1 3.248 7ZM8.24 5.333a1.249 1.249 0 1 1 .002-2.5a1.249 1.249 0 0 1-.002 2.501v-.001ZM5.329 3.667a.832.832 0 1 1 0-1.665a.832.832 0 0 1 0 1.665Z\"/>"
},
"coolicons": {
"body": "<path fill=\"currentColor\" d=\"M16.286 17.714A5.72 5.72 0 0 1 12 15.78a5.714 5.714 0 1 1-1.7-8.875a7.812 7.812 0 0 0-1.427 2.481a2.857 2.857 0 1 0 1.7 2.612a5.714 5.714 0 1 1 5.714 5.714v.002ZM13.43 12.1a2.857 2.857 0 1 0 0-.1v.1Z\"/>"
},
"copy": {
"body": "<path fill=\"currentColor\" d=\"M14 22H4a1.934 1.934 0 0 1-2-2V10a1.934 1.934 0 0 1 2-2h4V4a1.934 1.934 0 0 1 2-2h10a1.934 1.934 0 0 1 2 2v10a1.935 1.935 0 0 1-2 2h-4v4a1.935 1.935 0 0 1-2 2ZM4 10v10h10v-4h-4a1.935 1.935 0 0 1-2-2v-4H4Zm6-6v10h10V4H10Z\"/>"
},
"credit-card": {
"body": "<path fill=\"currentColor\" d=\"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 12v6h16v-6H4Zm0-6v2h16V6H4Zm9 10H6v-2h7v2Z\"/>"
},
"credit-card-alt": {
"body": "<path fill=\"currentColor\" d=\"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 6v12h16V6H4Zm11.5 10a2.5 2.5 0 1 1 0-5a2.5 2.5 0 0 1 0 5Zm-4 0a2.5 2.5 0 0 1 0-5c.543 0 1.07.18 1.5.512a2.476 2.476 0 0 0 0 3.975a2.46 2.46 0 0 1-1.5.513Z\"/>"
},
"css3": {
"body": "<path fill=\"currentColor\" d=\"m11.983 20.989l-6.37-1.813l-1.42-16.033h15.615l-1.42 16.034l-6.4 1.812h-.004Zm-4.261-7.637l.216 2.867L12 17.483l3.99-1.14l.906-9.923h-9.8l.158 1.949h7.529l-.186 2.024H9.66l.178 1.912h4.6l-.272 2.62l-2.164.6l-2.2-.6l-.14-1.57h-1.94v-.003Z\"/>"
},
"cupcake": {
"body": "<path fill=\"currentColor\" d=\"M5.238 14.902a3.001 3.001 0 0 1-.795-5.467c.328-.2.557-.551.557-.935a5.5 5.5 0 0 1 8.559-4.572c.371.25.855.275 1.287.158A2.503 2.503 0 0 1 18 6.5c0 .338.197.667.51.795a4.001 4.001 0 0 1 .294 7.276l-.694 5.553a1 1 0 0 1-.993.876H6.883a1 1 0 0 1-.992-.876l-.653-5.222ZM7 8.5c0 1.19-.69 2.14-1.518 2.644A1 1 0 0 0 6 13h11a2 2 0 0 0 .754-3.853C16.6 8.676 16 7.55 16 6.5a.5.5 0 0 0-.632-.483c-.81.22-1.935.235-2.923-.428A3.5 3.5 0 0 0 7 8.5Zm.266 6.5l.5 4H9v-4H7.266ZM13 19v-4h-2v4h2Zm2 0h1.234l.5-4H15v4Z\"/>"
},
"cylinder": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-4.561 0-8-1.935-8-4.5V6h.047a4.3 4.3 0 0 1 2.535-2.867A12.276 12.276 0 0 1 12 2c4.561 0 8 1.935 8 4.5a2.806 2.806 0 0 1-.048.5H20v10.5c0 2.565-3.439 4.5-8 4.5ZM5.777 9.394V17.5C5.777 18.519 8.2 20 12 20s6.222-1.481 6.222-2.5V9.394A11.3 11.3 0 0 1 12 11a11.305 11.305 0 0 1-6.223-1.606ZM12 4C8.2 4 5.777 5.481 5.777 6.5S8.2 9 12 9s6.222-1.481 6.222-2.5S15.8 4 12 4Z\"/>"
},
"dashboard": {
"body": "<path fill=\"currentColor\" d=\"M21 21h-8v-6h8v6Zm-10 0H3V11h8v10Zm10-8h-8V3h8v10ZM11 9H3V3h8v6Z\"/>"
},
"dashboard-02": {
"body": "<path fill=\"currentColor\" d=\"M22 20H11v-7h11v7ZM9 20H2v-7h7v7Zm13-9H2V4h20v7Z\"/>"
},
"data": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-4.336 0-8-2.035-8-4.444V6.444C4 4.035 7.664 2 12 2s8 2.035 8 4.444v11.112C20 19.965 16.337 22 12 22Zm-6-7.1v2.659c.07.553 2.309 2.222 6 2.222s5.931-1.674 6-2.228V14.9a11.49 11.49 0 0 1-6 1.547A11.489 11.489 0 0 1 6 14.9Zm0-5.559V12c.07.553 2.309 2.222 6 2.222s5.931-1.674 6-2.228V9.341a11.489 11.489 0 0 1-6 1.548a11.488 11.488 0 0 1-6-1.548Zm6-5.119c-3.692 0-5.931 1.674-6 2.229c.07.549 2.311 2.215 6 2.215s5.931-1.674 6-2.228c-.07-.551-2.311-2.216-6-2.216Z\"/>"
},
"delete-column": {
"body": "<path fill=\"currentColor\" d=\"M6 4v16h2.674c.355.749.84 1.424 1.425 1.998A2.015 2.015 0 0 1 10 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6.674a7.018 7.018 0 0 0-2 1.427V4H6Z\"/><path fill=\"currentColor\" d=\"M10 17c0-1.636.786-3.088 2-4a5 5 0 1 1-2 4Zm2 1h6v-2h-6v2Z\"/>"
},
"delete-row": {
"body": "<path fill=\"currentColor\" d=\"M20 6H4v4h8.101a7.018 7.018 0 0 0-1.427 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4c0 .033 0 .066-.002.099A7.017 7.017 0 0 0 20 8.674V6Z\"/><path fill=\"currentColor\" d=\"M20.85 11.81A4.99 4.99 0 0 0 17 10a4.993 4.993 0 0 0-4 2a5 5 0 1 0 7.851-.19ZM20 14v2h-6v-2h6Z\"/>"
},
"devices": {
"body": "<path fill=\"currentColor\" d=\"M10 21H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1V5a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-8v1a2 2 0 0 1-2 2ZM4 9v10h6V9H4Zm3-2h3a2 2 0 0 1 2 2v7h8V5H7v2Z\"/>"
},
"discord": {
"body": "<path fill=\"currentColor\" d=\"m19.625 22l-2.042-1.8l-1.151-1.07L15.215 18l.5 1.759H4.947A1.954 1.954 0 0 1 3 17.8V4.957A1.954 1.954 0 0 1 4.947 3h12.731a1.954 1.954 0 0 1 1.947 1.957V22ZM15.1 13.508a3.007 3.007 0 0 1-1.715 1.128c.282.36.622.767.625.771a3.5 3.5 0 0 0 2.907-1.444a12.826 12.826 0 0 0-1.368-5.538a4.721 4.721 0 0 0-2.658-1h-.011l-.133.152a6.4 6.4 0 0 1 2.366 1.206a7.788 7.788 0 0 0-2.86-.912a7.977 7.977 0 0 0-1.918.019a.8.8 0 0 0-.134.014h-.028a7.166 7.166 0 0 0-2.156.6c-.342.157-.552.271-.561.275c-.009.004 0 0 0-.007c.738-.58 1.59-1 2.499-1.231l-.1-.114h-.006a4.723 4.723 0 0 0-2.658 1a12.729 12.729 0 0 0-1.368 5.538a3.44 3.44 0 0 0 2.9 1.444s.358-.436.637-.789a2.966 2.966 0 0 1-1.667-1.12c.007.005.106.072.266.16c.01.013.024.023.039.03a.27.27 0 0 0 .04.023a5.366 5.366 0 0 0 .738.346c.453.18.922.317 1.4.41c.419.079.844.12 1.27.12c.4 0 .798-.037 1.191-.11a6.3 6.3 0 0 0 1.377-.408a5.516 5.516 0 0 0 1.086-.563Zm-2.038-.427a1.06 1.06 0 1 1 .967-1.055c.022.558-.41 1.03-.968 1.055h.001Zm-3.468 0a1.059 1.059 0 0 1 0-2.11a.93.93 0 0 1 .668.285c.199.206.307.483.3.769a1.015 1.015 0 0 1-.969 1.056h.001Z\"/>"
},
"dot-01-xs": {
"body": "<path fill=\"currentColor\" d=\"M12 14a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"dot-02-s": {
"body": "<path fill=\"currentColor\" d=\"M12 15a3 3 0 1 1 0-6a3 3 0 0 1 0 6Z\"/>"
},
"dot-03-m": {
"body": "<path fill=\"currentColor\" d=\"M12 16a4 4 0 1 1 0-8a4 4 0 0 1 0 8Z\"/>"
},
"dot-04-l": {
"body": "<path fill=\"currentColor\" d=\"M12 17a5 5 0 1 1 0-10a5 5 0 0 1 0 10Z\"/>"
},
"dot-05-xl": {
"body": "<path fill=\"currentColor\" d=\"M12 18a6 6 0 1 1 0-12a6 6 0 0 1 0 12Z\"/>"
},
"double-quotes-l": {
"body": "<path fill=\"currentColor\" d=\"M16.372 11.621c1.57 0 2.628 1.092 2.628 2.71C19 15.787 17.784 17 16.137 17C14.333 17 13 15.544 13 13.32c0-5.055 3.686-7.077 6-7.32v2.224c-1.569.283-3.333 1.86-3.412 3.6c.079-.04.392-.203.784-.203Zm-7.999 0c1.568 0 2.627 1.092 2.627 2.71C11 15.787 9.784 17 8.137 17C6.333 17 5 15.544 5 13.32C5 8.265 8.686 6.243 11 6v2.224c-1.569.283-3.333 1.86-3.412 3.6c.079-.04.392-.203.785-.203Z\"/>"
},
"double-quotes-r": {
"body": "<path fill=\"currentColor\" d=\"M7.627 11.379C6.06 11.379 5 10.287 5 8.669C5 7.213 6.216 6 7.863 6C9.667 6 11 7.456 11 9.68c0 5.055-3.686 7.077-6 7.32v-2.224c1.569-.283 3.333-1.86 3.412-3.6c-.079.04-.392.203-.785.203Zm8 0c-1.568 0-2.627-1.092-2.627-2.71C13 7.213 14.216 6 15.863 6C17.667 6 19 7.456 19 9.68c0 5.055-3.686 7.077-6 7.32v-2.224c1.569-.283 3.333-1.86 3.412-3.6c-.079.04-.392.203-.785.203Z\"/>"
},
"doughnut-chart": {
"body": "<path fill=\"currentColor\" d=\"M12.051 21.949a10 10 0 0 1-1-19.949v4.04a5.994 5.994 0 1 0 6.91 6.909H22a10.015 10.015 0 0 1-9.95 9Zm9.95-11h-4.04a5.993 5.993 0 0 0-4.91-4.909V2a10.022 10.022 0 0 1 8.95 8.948v.001Z\"/>"
},
"download": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5v-2h14v2Zm-7-4l-6-6l1.41-1.41L11 14.17V2h2v12.17l3.59-3.58L18 12l-6 6Z\"/>"
},
"download-done": {
"body": "<path fill=\"currentColor\" d=\"M19 19H5v-2h14v2Zm-9-4.58l-4-4l1.41-1.41L10 11.59L16.59 5L18 6.42l-8 8Z\"/>"
},
"dribbble": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-4.88-3.455l-.005.01a8.148 8.148 0 0 0 7.939 1.033a34.534 34.534 0 0 0-1.679-5.977a12.638 12.638 0 0 0-4.546 2.773a9.68 9.68 0 0 0-1.65 2.057l-.007.011v-.01l-.018.035l-.012.02l-.007.013l-.017.036l.002-.001Zm9.659-5.5c-.492 0-.984.034-1.472.1a37.456 37.456 0 0 1 1.5 5.463a8.052 8.052 0 0 0 3.22-5.127a12.187 12.187 0 0 0-3.248-.439v.003Zm-12.962-1.09v.056a8.181 8.181 0 0 0 1.925 5.264a13.522 13.522 0 0 1 6.772-5.375l.119-.034c-.177-.391-.343-.74-.509-1.066a31.124 31.124 0 0 1-8.195 1.155h-.112Zm12.649-.606a21.36 21.36 0 0 1 3.7.338a8.105 8.105 0 0 0-1.692-4.659a11.791 11.791 0 0 1-4.4 3.084l.029-.012l-.031.013a23.484 23.484 0 0 1 .548 1.233l.041.1c.6-.066 1.202-.099 1.805-.097ZM8.377 4.677a8.178 8.178 0 0 0-4.33 5.414c2.33-.036 4.65-.33 6.915-.878h.028L11 9.2l.054-.013h.006l.04-.008h.016l.021-.006l.04-.01l.023-.01l.022-.006h.02a51.796 51.796 0 0 0-2.866-4.47h.001ZM12 3.839a8.437 8.437 0 0 0-1.631.155a45.662 45.662 0 0 1 2.879 4.528a9.666 9.666 0 0 0 4.036-2.746A8.192 8.192 0 0 0 12 3.839Z\"/>"
},
"dropbox": {
"body": "<path fill=\"currentColor\" d=\"M12.006 20.5L7 17.311l5-3.186l5 3.186l-5 3.188l.006.001Zm5-4.251l-5-3.187l5-3.187l-5-3.186l5-3.189l5 3.189l-5 3.186l5 3.187l-5 3.187ZM7 16.249l-5-3.187l5-3.187l-5-3.186L7 3.5l5 3.189l-5 3.185l5 3.187l-5 3.188Z\"/>"
},
"edit": {
"body": "<path fill=\"currentColor\" d=\"M4.42 20.579a1 1 0 0 1-.737-.326a.988.988 0 0 1-.263-.764l.245-2.694L14.983 5.481l3.537 3.536L7.205 20.33l-2.694.245a.95.95 0 0 1-.091.004ZM19.226 8.31L15.69 4.774l2.121-2.121a1 1 0 0 1 1.415 0l2.121 2.121a1 1 0 0 1 0 1.415l-2.12 2.12l-.001.001Z\"/>"
},
"error": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-1-7v2h2v-2h-2Zm0-8v6h2V7h-2Z\"/>"
},
"error-outline": {
"body": "<path fill=\"currentColor\" d=\"M11.99 22C6.468 21.994 1.996 17.515 2 11.993C2.004 6.472 6.482 1.998 12.003 2C17.525 2.002 22 6.478 22 12c-.003 5.525-4.485 10.002-10.01 10ZM4 12.172A8 8 0 1 0 4 12v.172ZM13 17h-2v-2h2v2Zm0-4h-2V7h2v6Z\"/>"
},
"exit": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2v-4h2v4h14V5H5v4H3V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2Zm-8-5v-3H3v-2h8V8l5 4l-5 4Z\"/>"
},
"expand": {
"body": "<path fill=\"currentColor\" d=\"M12 19H5l.007-7H7v5h5v2Zm6.992-7H17V7h-5V5h7l-.008 7Z\"/>"
},
"external-link": {
"body": "<path fill=\"currentColor\" d=\"M17.001 20h-11a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h4v2h-4v11h11v-4h2v4a2 2 0 0 1-2 2Zm-5.3-6.293l-1.41-1.414L16.584 6h-3.583V4h7v7h-2V7.415l-6.3 6.292Z\"/>"
},
"facebook": {
"body": "<path fill=\"currentColor\" d=\"M2.002 12.002a10.005 10.005 0 0 0 8.437 9.879v-6.989H7.902v-2.89h2.54v-2.2a3.528 3.528 0 0 1 3.773-3.9c.75.012 1.5.079 2.24.2v2.459h-1.264a1.446 1.446 0 0 0-1.628 1.563v1.878h2.771l-.443 2.891h-2.328v6.988a10 10 0 1 0-11.561-9.879Z\"/>"
},
"fast-forward": {
"body": "<path fill=\"currentColor\" d=\"M13 18V6l8.5 6l-8.5 6Zm-9 0V6l8.5 6L4 18Z\"/>"
},
"fast-rewind": {
"body": "<path fill=\"currentColor\" d=\"m20 18l-8.5-6L20 6v12Zm-9 0l-8.5-6L11 6v12Z\"/>"
},
"figma": {
"body": "<path fill=\"currentColor\" d=\"M8.945 22a3.92 3.92 0 0 1-2.5-6.962a3.909 3.909 0 0 1 0-6.077A3.918 3.918 0 0 1 8.945 2h6.11a3.918 3.918 0 0 1 2.5 6.961a3.919 3.919 0 0 1-2.5 6.962a3.945 3.945 0 0 1-2.165-.644v2.8A3.938 3.938 0 0 1 8.945 22Zm-.022-6.076a2.153 2.153 0 1 0 2.187 2.153v-2.153H8.922h.001Zm6.133-6.077A2.153 2.153 0 1 0 17.22 12a2.161 2.161 0 0 0-2.165-2.153h.001Zm-6.11 0a2.153 2.153 0 0 0-.023 4.306h2.187V9.847H8.946ZM12.89 3.77v4.307h2.164a2.155 2.155 0 0 0 2.163-2.061v.435v-.528a2.162 2.162 0 0 0-2.162-2.153H12.89Zm-3.946 0a2.153 2.153 0 1 0 0 4.306h2.166V3.77H8.944Z\"/>"
},
"file-archive": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h1v2h2v2H7v2h2v2H7v7h4v-5H9v-2h2V8H9V6h2V4H9V2h4a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2ZM13 4v5h5l-5-5Zm-3 12H8v-2h2v2Z\"/>"
},
"file-blank-fill": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2ZM13 4v5h5l-5-5Z\"/>"
},
"file-blank-outline": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.09.09 0 0 1 .032.006a.15.15 0 0 0 .03.006c.088.006.175.023.259.051l.028.009a.988.988 0 0 1 .359.228l6 6a.987.987 0 0 1 .2.293c.01.022.017.045.025.068l.009.026c.028.083.044.17.049.258l.007.027C20 8.982 20 8.991 20 9v11a2 2 0 0 1-2 2ZM6 4v16h12V10h-5a1 1 0 0 1-1-1V4H6Zm8 1.414V8h2.586L14 5.414Z\"/>"
},
"file-css": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-3.973-4.6c-.008.297.061.59.2.852c.132.235.328.428.566.555c.247.13.521.196.8.193c.375.02.742-.109 1.024-.357A1.31 1.31 0 0 0 17 17.65a1.478 1.478 0 0 0-.3-.953a2.259 2.259 0 0 0-.962-.632a1.723 1.723 0 0 1-.529-.334a.528.528 0 0 1-.149-.364a.6.6 0 0 1 .134-.408a.47.47 0 0 1 .373-.154a.455.455 0 0 1 .389.181a.84.84 0 0 1 .137.517H17a1.684 1.684 0 0 0-.177-.782a1.253 1.253 0 0 0-.5-.531a1.586 1.586 0 0 0-1.778.184a1.28 1.28 0 0 0-.4.986c-.005.32.1.632.3.882c.269.294.605.517.981.649c.19.072.364.18.513.317a.632.632 0 0 1 .143.448c0 .361-.161.544-.479.544a.6.6 0 0 1-.5-.19a.984.984 0 0 1-.153-.612l-.923.002Zm-3.443 0c-.008.297.061.59.2.852c.132.235.328.428.566.555c.247.13.521.196.8.193c.375.02.742-.109 1.024-.357c.26-.263.397-.624.376-.993a1.478 1.478 0 0 0-.3-.953a2.259 2.259 0 0 0-.962-.632a1.723 1.723 0 0 1-.529-.334a.532.532 0 0 1-.149-.364a.6.6 0 0 1 .134-.408a.47.47 0 0 1 .374-.154a.455.455 0 0 1 .389.181c.101.153.15.334.137.517h.913a1.7 1.7 0 0 0-.177-.782a1.261 1.261 0 0 0-.5-.531a1.457 1.457 0 0 0-.745-.19c-.38-.013-.75.121-1.033.374a1.28 1.28 0 0 0-.4.986c-.006.32.1.632.3.882c.268.294.605.517.98.649c.19.072.365.18.514.317a.632.632 0 0 1 .143.448c0 .361-.161.544-.48.544a.6.6 0 0 1-.5-.19a.984.984 0 0 1-.159-.61h-.916ZM8.6 14a1.41 1.41 0 0 0-1.176.545c-.31.453-.458.996-.424 1.544v.819a2.56 2.56 0 0 0 .408 1.551A1.4 1.4 0 0 0 8.587 19c.421.025.833-.13 1.133-.427c.27-.32.421-.724.429-1.143v.053v-.173h-.908c.011.24-.043.478-.156.69a.582.582 0 0 1-.5.187a.55.55 0 0 1-.52-.271a2.3 2.3 0 0 1-.149-1V16c-.015-.31.04-.62.162-.905a.546.546 0 0 1 .52-.278a.557.557 0 0 1 .495.2c.112.219.163.463.149.708h.918a2.115 2.115 0 0 0-.439-1.277A1.406 1.406 0 0 0 8.6 14ZM13 4v5h5l-5-5Z\"/>"
},
"file-find": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7c.265 0 .52.105.707.293l6 6A.991.991 0 0 1 20 9v11a2 2 0 0 1-2 2ZM6 4v16h10.586l-2.566-2.566A3.941 3.941 0 0 1 12 18a4.044 4.044 0 1 1 3.434-1.98L18 18.588V9.414L12.586 4H6Zm6 8a2 2 0 1 0 0 4a2 2 0 0 0 0-4Z\"/>"
},
"file-html": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-1.739-7v4H18.5v-.67h-1.426V15h-.813Zm-1.4 1.258l-.074 1.659V19h.815v-4h-1.057l-.757 2.894l-.76-2.894h-1.061v4h.813v-1.083l-.08-1.667l.8 2.75h.554l.807-2.742ZM8.712 15v.673h.978V19h.815v-3.327h.995V15H8.712Zm-2.4 2.289h1.2V19h.81v-4h-.81v1.618h-1.2V15H5.5v4h.812v-1.711ZM13 4v5h5l-5-5Z\"/>"
},
"file-image": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-9-6l-3 4h12l-5-7l-3 4l-1-1Zm-.5-5a1.5 1.5 0 1 0 1.5 1.578v.29v-.368A1.5 1.5 0 0 0 8.5 11ZM13 4v5h5l-5-5Z\"/>"
},
"file-jpg": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-2.539-8a1.4 1.4 0 0 0-1.188.545a2.552 2.552 0 0 0-.406 1.547v.876c-.029.54.128 1.074.443 1.514c.3.35.746.542 1.207.518c.286.003.57-.05.836-.154h.008h-.006a.189.189 0 0 1 .029-.014h.005l.016-.008l.021-.01c.218-.1.412-.247.568-.43v-2.011H15.45v.742h.637v.893l-.08.06a.753.753 0 0 1-.436.117a.661.661 0 0 1-.607-.3a1.962 1.962 0 0 1-.183-.969v-.883a1.985 1.985 0 0 1 .173-.925a.574.574 0 0 1 .535-.292a.55.55 0 0 1 .446.171c.12.19.182.408.18.632H17a1.933 1.933 0 0 0-.433-1.227c-.297-.28-.7-.421-1.106-.392ZM7 17.5c-.021.396.1.787.344 1.1c.244.272.598.419.963.4c.362.009.709-.149.941-.427a1.7 1.7 0 0 0 .365-1.137v-3.369H8.7v3.322c0 .528-.133.8-.4.8s-.393-.232-.393-.689H7Zm3.327-3.429v4.866h.91v-1.715h.607c.405.022.802-.128 1.09-.414a1.58 1.58 0 0 0 .392-1.13a1.69 1.69 0 0 0-.4-1.164c-.27-.3-.661-.464-1.065-.447l-1.534.004ZM13 4v5h5l-5-5Zm-1.138 12.4h-.625v-1.515h.635c.16 0 .307.084.39.221c.105.174.156.375.146.578a.866.866 0 0 1-.142.535a.483.483 0 0 1-.404.181Z\"/>"
},
"file-js": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-5.884-4.6c-.006.296.063.59.2.852a1.4 1.4 0 0 0 .55.555c.237.129.502.195.772.193c.366.019.724-.11.994-.357A1.33 1.33 0 0 0 15 17.65a1.506 1.506 0 0 0-.3-.95a2.178 2.178 0 0 0-.932-.632a1.67 1.67 0 0 1-.514-.334a.54.54 0 0 1-.145-.364a.6.6 0 0 1 .13-.408a.449.449 0 0 1 .362-.154a.434.434 0 0 1 .378.181a.859.859 0 0 1 .132.517H15a1.738 1.738 0 0 0-.172-.782a1.237 1.237 0 0 0-.486-.531A1.382 1.382 0 0 0 13.62 14a1.407 1.407 0 0 0-1 .374a1.3 1.3 0 0 0-.392.986a1.4 1.4 0 0 0 .29.882c.258.292.585.515.951.649c.186.072.356.18.5.317c.101.127.15.287.139.448c0 .361-.157.544-.465.544a.578.578 0 0 1-.483-.19a1.012 1.012 0 0 1-.148-.612l-.896.002ZM9 17.5c-.022.395.097.784.335 1.1c.235.27.581.418.939.4c.356.008.695-.15.918-.427c.25-.325.376-.728.356-1.137v-3.369h-.887v3.322c0 .528-.13.8-.387.8s-.383-.232-.383-.689H9ZM13 4v5h5l-5-5Z\"/>"
},
"file-minus": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.09.09 0 0 1 .032.006a.15.15 0 0 0 .03.006c.088.006.175.023.259.051l.028.009a.988.988 0 0 1 .359.228l6 6a.987.987 0 0 1 .2.293c.01.022.017.045.025.068l.009.026c.028.083.044.17.049.258l.007.027C20 8.982 20 8.991 20 9v11a2 2 0 0 1-2 2ZM6 4v16h12V10h-5a1 1 0 0 1-1-1V4H6Zm8 1.414V8h2.586L14 5.414ZM15 16H9v-2h6v2Z\"/>"
},
"file-new": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066v.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006c.005.006.01.013.013.02v11a2 2 0 0 1-2 2ZM6 4v16h12V10h-5a1 1 0 0 1-1-1V4H6Zm8 1.414V8h2.586L14 5.414ZM13 18h-2v-2H9v-2h2v-2h2v2h2v2h-2v2Z\"/>"
},
"file-pdf": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-3.576-8v5h.94v-2.04h1.46v-.838h-1.46v-1.281H17V14h-2.576Zm-3.7 0v5h1.206a1.67 1.67 0 0 0 1.332-.56a2.3 2.3 0 0 0 .486-1.549v-.81a2.287 2.287 0 0 0-.5-1.526c-.325-.37-.8-.574-1.293-.555h-1.231ZM7 14v5h.94v-1.759h.626c.418.023.826-.132 1.124-.426a1.62 1.62 0 0 0 .41-1.16a1.725 1.725 0 0 0-.412-1.194A1.4 1.4 0 0 0 8.585 14H7Zm6-10v5h5l-5-5Zm-1.054 14.162h-.282v-3.321h.342a.716.716 0 0 1 .62.292c.147.303.21.64.182.976v.869c.022.32-.047.64-.2.921a.765.765 0 0 1-.662.263ZM8.585 16.4h-.646v-1.559h.655a.475.475 0 0 1 .4.227c.108.179.16.385.15.594a.89.89 0 0 1-.147.55a.5.5 0 0 1-.412.188Z\"/>"
},
"file-png": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-2.458-8a1.3 1.3 0 0 0-1.126.545a2.66 2.66 0 0 0-.384 1.547v.876a2.479 2.479 0 0 0 .419 1.514c.277.348.705.54 1.149.518c.271.003.54-.05.791-.154l.021-.009a1.55 1.55 0 0 0 .588-.455v-2.009h-1.469v.742h.6v.893l-.076.06a.689.689 0 0 1-.414.117a.62.62 0 0 1-.575-.3a2.063 2.063 0 0 1-.173-.969v-.883c-.016-.317.04-.633.165-.925a.537.537 0 0 1 .507-.292c.16-.013.317.05.423.171c.113.191.171.41.17.632H17a2 2 0 0 0-.41-1.227A1.34 1.34 0 0 0 15.543 14h-.001Zm-4.258 1.746l1.259 3.187h.857v-4.866h-.855v3.195l-1.263-3.195h-.862v4.866h.862v-3.187h.002ZM7 14.067v4.866h.862v-1.711h.575c.388.02.766-.131 1.032-.414c.262-.317.395-.72.373-1.13a1.747 1.747 0 0 0-.379-1.164a1.253 1.253 0 0 0-1.009-.447H7ZM13 4v5h5l-5-5ZM8.454 16.4h-.592v-1.515h.6a.432.432 0 0 1 .37.221c.1.176.148.376.138.578a.9.9 0 0 1-.135.535a.448.448 0 0 1-.381.181Z\"/>"
},
"file-svg": {
"body": "<path fill=\"currentColor\" d=\"M18 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7a.104.104 0 0 1 .027 0h.006a.15.15 0 0 0 .029.006c.088.006.175.023.259.051h.042a.421.421 0 0 1 .052.043a.988.988 0 0 1 .293.2l6 6a.987.987 0 0 1 .2.293a.735.735 0 0 1 .023.066l.01.028c.028.083.044.17.049.258a.1.1 0 0 0 .007.029v.006A.112.112 0 0 1 20 9v11a2 2 0 0 1-2 2Zm-2.5-8c-.454-.024-.89.18-1.161.545a2.6 2.6 0 0 0-.4 1.547v.876a2.426 2.426 0 0 0 .432 1.514c.29.35.728.541 1.181.518c.28.003.557-.05.816-.154l.013-.005l-.016.007c.245-.101.46-.26.63-.464v-2.011h-1.509v.742h.623v.893l-.078.06a.723.723 0 0 1-.427.117a.641.641 0 0 1-.592-.3a2.01 2.01 0 0 1-.178-.969v-.883a2.018 2.018 0 0 1 .166-.926a.557.557 0 0 1 .523-.292a.531.531 0 0 1 .435.171c.117.19.177.41.175.632H17a1.96 1.96 0 0 0-.423-1.227A1.4 1.4 0 0 0 15.5 14ZM7 17.4c-.006.296.063.59.2.852c.126.234.317.426.55.555c.237.129.503.195.773.193c.366.02.724-.11.994-.357a1.33 1.33 0 0 0 .366-.993c.013-.34-.09-.676-.293-.95a2.186 2.186 0 0 0-.934-.632a1.652 1.652 0 0 1-.513-.334a.536.536 0 0 1-.143-.367a.608.608 0 0 1 .13-.408a.45.45 0 0 1 .363-.154c.148-.008.29.06.377.181A.853.853 0 0 1 9 15.5h.886a1.739 1.739 0 0 0-.172-.782a1.245 1.245 0 0 0-.487-.531A1.382 1.382 0 0 0 8.505 14a1.409 1.409 0 0 0-1 .374a1.3 1.3 0 0 0-.393.986a1.4 1.4 0 0 0 .291.882c.258.293.585.516.951.649c.186.072.356.18.5.317c.101.127.15.287.139.448c0 .361-.157.544-.465.544a.58.58 0 0 1-.484-.19a1.012 1.012 0 0 1-.148-.612L7 17.4Zm3.182-3.332l1.26 4.866h.925l1.269-4.866h-.991L11.9 17.6l-.737-3.529l-.981-.003ZM13 4v5h5l-5-5Z\"/>"
},
"filter": {
"body": "<path fill=\"currentColor\" d=\"M13.447 20.905A.988.988 0 0 0 14 20.02V14.7c0-.262.105-.514.293-.7l6.121-6.054a1.97 1.97 0 0 0 .586-1.4V3.99A.994.994 0 0 0 20 3H4c-.553 0-1 .442-1 .99v2.556c0 .525.211 1.029.586 1.4L9.707 14a.984.984 0 0 1 .293.7v6.31c0 .735.782 1.213 1.447.884l2-.989Z\"/>"
},
"filter-off": {
"body": "<path fill=\"currentColor\" d=\"M8.414.414L7 1.828L8.172 3H4c-.553 0-1 .442-1 .99v2.556c0 .525.211 1.029.586 1.4L9.707 14a.984.984 0 0 1 .293.7v6.31c0 .735.782 1.213 1.447.884l2-.989A.988.988 0 0 0 14 20.02V14.7c0-.262.105-.514.293-.7l2.453-2.426l2.982 2.982l1.414-1.414L8.414.414Zm12 7.532l-.824.815L13.828 3H20c.553 0 1 .442 1 .99v2.556a1.97 1.97 0 0 1-.586 1.4Z\"/>"
},
"filter-off-outline": {
"body": "<path fill=\"currentColor\" d=\"M8.414.414L7 1.828L8.172 3H4a1 1 0 0 0-1 1v2.59c0 .523.213 1.037.583 1.407L9 13.414V21a1.001 1.001 0 0 0 1.447.895l4-2c.339-.17.553-.516.553-.895v-5.586l1.793-1.793l2.935 2.935l1.414-1.414L8.414.414Zm6.965 9.793l-2.086 2.086A.996.996 0 0 0 13 13v5.382l-2 1V13a.996.996 0 0 0-.293-.707L5 6.59V5h5.172l5.207 5.207ZM20 3h-6.172l2 2h3.173l.002 1.583l-.796.796l1.414 1.414l.796-.796c.37-.37.583-.884.583-1.407V4a1 1 0 0 0-1-1Z\"/>"
},
"filter-outline": {
"body": "<path fill=\"currentColor\" d=\"M20 3H4a1 1 0 0 0-1 1v2.59c0 .523.213 1.037.583 1.407L9 13.414V21a1.001 1.001 0 0 0 1.447.895l4-2c.339-.17.553-.516.553-.895v-5.586l5.417-5.417c.37-.37.583-.884.583-1.407V4a1 1 0 0 0-1-1Zm-6.707 9.293A.996.996 0 0 0 13 13v5.382l-2 1V13a.996.996 0 0 0-.293-.707L5 6.59V5h14.001l.002 1.583l-5.71 5.71Z\"/>"
},
"first-page": {
"body": "<path fill=\"currentColor\" d=\"M16.444 18.01L10.432 12l6.012-6.01l1.415 1.414l-4.6 4.6l4.6 4.6l-1.415 1.406Zm-8.3-.01h-2V6h2v12Z\"/>"
},
"flag-fill": {
"body": "<path fill=\"currentColor\" d=\"M13.66 4.3a1 1 0 0 0-.98-.8H5.5a1 1 0 0 0-1 1v15a1 1 0 1 0 2 0v-6h5.6l.24 1.2c.09.468.503.805.98.8h5.18a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-4.6l-.24-1.2Z\"/>"
},
"flag-outline": {
"body": "<path fill=\"currentColor\" d=\"M5.5 20.5a1 1 0 0 1-1-1v-15a1 1 0 0 1 1-1h6.38a1 1 0 0 1 .9.55l.72 1.45h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-5.39a1 1 0 0 1-.89-.55l-.72-1.45h-5v6a1 1 0 0 1-1 1Zm1-15v6h6l1 2h4v-6h-5l-1-2h-5Z\"/>"
},
"folder": {
"body": "<path fill=\"currentColor\" d=\"M20 21H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6a1 1 0 0 1 .707.293L12.414 5H20a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 7v12h16V7H4Z\"/>"
},
"folder-minus": {
"body": "<path fill=\"currentColor\" d=\"M20 21H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6a1 1 0 0 1 .707.293L12.414 5H20a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 7v12h16V7H4Zm12 7H8v-2h8v2Z\"/>"
},
"folder-open": {
"body": "<path fill=\"currentColor\" d=\"M18 20H3a.984.984 0 0 1-.993-1H2V5a2 2 0 0 1 2-2h6a1 1 0 0 1 .616.213L12.9 5H18a2 2 0 0 1 2 2v4h1a1 1 0 0 1 .919 1.394l-3 7A1 1 0 0 1 18 20ZM6.66 13l-2.143 5h12.824l2.143-5H6.66ZM4 7v7.13l1.081-2.524A1 1 0 0 1 6 11h12V7H4Z\"/>"
},
"folder-plus": {
"body": "<path fill=\"currentColor\" d=\"M20 21H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6a1 1 0 0 1 .707.293L12.414 5H20a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 7v12h16V7H4Zm9 10h-2v-3H8v-2h3V9h2v3h3v2h-3v3Z\"/>"
},
"github": {
"body": "<path fill=\"currentColor\" d=\"M12.026 2a9.975 9.975 0 0 0-3.153 19.439c.5.09.679-.217.679-.481c0-.237-.008-.865-.011-1.7c-2.775.6-3.361-1.338-3.361-1.338a2.635 2.635 0 0 0-1.107-1.459c-.9-.619.069-.605.069-.605c.64.088 1.205.467 1.527 1.028a2.124 2.124 0 0 0 2.9.829c.046-.506.272-.979.635-1.334c-2.214-.251-4.542-1.107-4.542-4.93a3.865 3.865 0 0 1 1.026-2.671a3.588 3.588 0 0 1 .1-2.64s.837-.269 2.742 1.021a9.439 9.439 0 0 1 4.992 0c1.906-1.291 2.742-1.021 2.742-1.021c.37.835.405 1.78.1 2.64a3.84 3.84 0 0 1 1.024 2.675c0 3.833-2.33 4.675-4.552 4.922c.48.49.725 1.162.675 1.846c0 1.334-.012 2.41-.012 2.737c0 .267.178.577.687.479A9.975 9.975 0 0 0 12.026 2Z\"/>"
},
"google": {
"body": "<path fill=\"currentColor\" d=\"M11.956 10.356v3.451h4.792c-.446 2.193-2.313 3.453-4.792 3.453a5.28 5.28 0 0 1 0-10.559a5.166 5.166 0 0 1 3.29 1.178l2.6-2.6a8.93 8.93 0 1 0-5.89 15.635c4.467 0 8.529-3.249 8.529-8.934a7.468 7.468 0 0 0-.2-1.625l-8.329.001Z\"/>"
},
"grid": {
"body": "<path fill=\"currentColor\" d=\"M20 20h-4v-4h4v4Zm-6 0h-4v-4h4v4Zm-6 0H4v-4h4v4Zm12-6h-4v-4h4v4Zm-6 0h-4v-4h4v4Zm-6 0H4v-4h4v4Zm12-6h-4V4h4v4Zm-6 0h-4V4h4v4ZM8 8H4V4h4v4Z\"/>"
},
"grid-big": {
"body": "<path fill=\"currentColor\" d=\"M19 19h-6v-6h6v6Zm-8 0H5v-6h6v6Zm8-8h-6V5h6v6Zm-8 0H5V5h6v6Z\"/>"
},
"grid-big-round": {
"body": "<path fill=\"currentColor\" d=\"M16 19a3 3 0 1 1 0-6a3 3 0 0 1 0 6Zm-8 0a3 3 0 1 1 0-6a3 3 0 0 1 0 6Zm8-8a3 3 0 1 1 0-6a3 3 0 0 1 0 6Zm-8 0a3 3 0 1 1 0-6a3 3 0 0 1 0 6Z\"/>"
},
"grid-horizontal": {
"body": "<path fill=\"currentColor\" d=\"M20 17h-4v-4h4v4Zm-6 0h-4v-4h4v4Zm-6 0H4v-4h4v4Zm12-6h-4V7h4v4Zm-6 0h-4V7h4v4Zm-6 0H4V7h4v4Z\"/>"
},
"grid-horizontal-round": {
"body": "<path fill=\"currentColor\" d=\"M20 17h-4v-4h4v4Zm-6 0h-4v-4h4v4Zm-6 0H4v-4h4v4Zm12-6h-4V7h4v4Zm-8 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-4 0H4V7h4v4Z\"/>"
},
"grid-round": {
"body": "<path fill=\"currentColor\" d=\"M18 20a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm12-6a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm12-6a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4ZM6 8a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"grid-small": {
"body": "<path fill=\"currentColor\" d=\"M17 17h-4v-4h4v4Zm-6 0H7v-4h4v4Zm6-6h-4V7h4v4Zm-6 0H7V7h4v4Z\"/>"
},
"grid-small-round": {
"body": "<path fill=\"currentColor\" d=\"M17 17h-4v-4h4v4Zm-6 0H7v-4h4v4Zm6-6h-4V7h4v4Zm-8 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"grid-vertical": {
"body": "<path fill=\"currentColor\" d=\"M17 20h-4v-4h4v4Zm-6 0H7v-4h4v4Zm6-6h-4v-4h4v4Zm-6 0H7v-4h4v4Zm6-6h-4V4h4v4Zm-6 0H7V4h4v4Z\"/>"
},
"grid-vertical-round": {
"body": "<path fill=\"currentColor\" d=\"M17 20h-4v-4h4v4Zm-6 0H7v-4h4v4Zm6-6h-4v-4h4v4Zm-8 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm8-6h-4V4h4v4Zm-6 0H7V4h4v4Z\"/>"
},
"group": {
"body": "<path fill=\"currentColor\" d=\"M9 3a5 5 0 1 0 0 10A5 5 0 0 0 9 3ZM6 8a3 3 0 1 1 6 0a3 3 0 0 1-6 0Zm10.908.218A2 2 0 0 0 16 8V6a4 4 0 1 1-2.357 7.232l1.178-1.616a2 2 0 1 0 2.087-3.398ZM19.998 21A3.999 3.999 0 0 0 16 17.002V15a6.001 6.001 0 0 1 6 6h-2.002ZM16 21h-2a5 5 0 0 0-10 0H2a7 7 0 1 1 14 0Z\"/>"
},
"group-alt": {
"body": "<path fill=\"currentColor\" d=\"M11 7a4 4 0 1 1-8 0a4 4 0 0 1 8 0ZM9 7a2 2 0 1 0-4 0a2 2 0 0 0 4 0Zm12 4.5a3.5 3.5 0 1 1-7 0a3.5 3.5 0 0 1 7 0Zm-2 0a1.5 1.5 0 1 0-3 0a1.5 1.5 0 0 0 3 0ZM10 21v-4a3 3 0 1 0-6 0v4H2v-4a5 5 0 0 1 10 0v4h-2Zm10-.5v.5h2v-.5a4.5 4.5 0 1 0-9 0v.5h2v-.5a2.5 2.5 0 0 1 5 0Z\"/>"
},
"hamburger": {
"body": "<path fill=\"currentColor\" d=\"M21 18H3v-2h18v2Zm0-5H3v-2h18v2Zm0-5H3V6h18v2Z\"/>"
},
"happy": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm0 14a4.837 4.837 0 0 1-4-2a6.3 6.3 0 0 1-1-2h10v.008A6.422 6.422 0 0 1 16 16a4.838 4.838 0 0 1-4 2Zm-3.5-6a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3Zm6.993-.014a1.493 1.493 0 1 1 0-2.986a1.493 1.493 0 0 1 0 2.986Z\"/>"
},
"heading": {
"body": "<path fill=\"currentColor\" d=\"M16 11V4h2v16h-2v-7H8v7H6V4h2v7h8Z\"/>"
},
"heading-h1": {
"body": "<path fill=\"currentColor\" d=\"M10 4v7H4V4H2v16h2v-7h6v7h2V4h-2Zm10 16V8h-1.5l-2.5.67v2.07l2-.536V20h2Z\"/>"
},
"heading-h2": {
"body": "<path fill=\"currentColor\" d=\"M10 4v7H4V4H2v16h2v-7h6v7h2V4h-2Zm12 7.75C22 9.679 20.21 8 18 8s-4 1.679-4 3.75h2.133l.007-.144C16.218 10.707 17.02 10 18 10c1.03 0 1.867.784 1.867 1.75c0 .439-.173.841-.459 1.148L14 18.444V20h8v-2h-4.497l3.516-3.79l.158-.18A3.59 3.59 0 0 0 22 11.75Z\"/>"
},
"heading-h3": {
"body": "<path fill=\"currentColor\" d=\"M10 4v7H4V4H2v16h2v-7h6v7h2V4h-2Zm11.729 6l.002-2H14.5v2h4.378l-3.176 3.283l1.407 1.515c.256-.118.546-.186.854-.186c1.04 0 1.884.768 1.884 1.714c0 .947-.844 1.715-1.884 1.715c-.917 0-1.681-.597-1.849-1.386L14 17.029C14.36 18.722 15.998 20 17.963 20C20.193 20 22 18.355 22 16.326c0-1.691-1.256-3.117-2.968-3.543L21.73 10Z\"/>"
},
"heading-h4": {
"body": "<path fill=\"currentColor\" d=\"M10 4v7H4V4H2v16h2v-7h6v7h2V4h-2Zm12 13.96V16h-1v-3.08h-2V16h-3l3.5-8h-2.08L14 16v1.96h5V20h2v-2.04h1Z\"/>"
},
"heading-h5": {
"body": "<path fill=\"currentColor\" d=\"M10 4v7H4V4H2v16h2v-7h6v7h2V4h-2Zm11.745 5.92V8h-6.118l-1.142 6.09l1.846.868a2.087 2.087 0 0 1 1.59-.718c1.127 0 2.04.86 2.04 1.92s-.913 1.92-2.04 1.92c-.93 0-1.715-.587-1.96-1.39L14 17.219C14.488 18.825 16.059 20 17.922 20C20.175 20 22 18.282 22 16.16s-1.825-3.84-4.078-3.84c-.367 0-.721.045-1.058.13l.473-2.53h4.408Z\"/>"
},
"heading-h6": {
"body": "<path fill=\"currentColor\" d=\"M10 4v7H4V4H2v16h2v-7h6v7h2V4h-2Zm7.999 8.32L20.597 8h-2.309l-3.742 6.222A3.71 3.71 0 0 0 14 16.16c0 2.122 1.79 3.84 4 3.84s4-1.718 4-3.84s-1.791-3.84-4.001-3.84ZM16 16.16c0-1.06.895-1.92 2-1.92s2 .86 2 1.92s-.895 1.92-2 1.92s-2-.86-2-1.92Z\"/>"
},
"heart-fill": {
"body": "<path fill=\"currentColor\" d=\"M2 8.4A5.4 5.4 0 0 1 7.5 3A5.991 5.991 0 0 1 12 5a5.991 5.991 0 0 1 4.5-2A5.4 5.4 0 0 1 22 8.4c0 5.356-6.379 9.4-10 12.6C8.387 17.773 2 13.76 2 8.4Z\"/>"
},
"heart-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 21c-.645-.572-1.374-1.167-2.145-1.8h-.01c-2.715-2.22-5.792-4.732-7.151-7.742c-.446-.958-.683-2-.694-3.058A5.39 5.39 0 0 1 7.5 3a6.158 6.158 0 0 1 3.328.983A5.6 5.6 0 0 1 12 5c.344-.39.738-.732 1.173-1.017A6.152 6.152 0 0 1 16.5 3A5.39 5.39 0 0 1 22 8.4a7.422 7.422 0 0 1-.694 3.063c-1.359 3.01-4.435 5.521-7.15 7.737l-.01.008c-.772.629-1.5 1.224-2.145 1.8L12 21ZM7.5 5a3.535 3.535 0 0 0-2.5.992A3.342 3.342 0 0 0 4 8.4c.011.77.186 1.53.512 2.228A12.316 12.316 0 0 0 7.069 14.1c.991 1 2.131 1.968 3.117 2.782c.273.225.551.452.829.679l.175.143c.267.218.543.444.81.666l.013-.012l.006-.005h.006l.009-.007h.01l.018-.015l.041-.033l.007-.006l.011-.008h.006l.009-.008l.664-.545l.174-.143c.281-.229.559-.456.832-.681c.986-.814 2.127-1.781 3.118-2.786a12.298 12.298 0 0 0 2.557-3.471c.332-.704.51-1.472.52-2.25A3.343 3.343 0 0 0 19 6a3.535 3.535 0 0 0-2.5-1a3.988 3.988 0 0 0-2.99 1.311L12 8.051l-1.51-1.74A3.988 3.988 0 0 0 7.5 5Z\"/>"
},
"help-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-1-5v2h2v-2h-2Zm1-10a2 2 0 0 1 2 2a1.95 1.95 0 0 1-.59 1.41l-1.24 1.26A4.015 4.015 0 0 0 11 14.5v.5h2a3.42 3.42 0 0 1 1.17-2.83l.9-.92A3.16 3.16 0 0 0 16 9a4 4 0 0 0-8 0h2a2 2 0 0 1 2-2Z\"/>"
},
"help-circle-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22Zm-.016-2H12a8 8 0 1 0-.016 0ZM13 18h-2v-2h2v2Zm0-3h-2a3.583 3.583 0 0 1 1.77-3.178C13.43 11.316 14 10.88 14 10a2 2 0 1 0-4 0H8v-.09a4 4 0 1 1 8 .09a3.413 3.413 0 0 1-1.56 2.645A3.1 3.1 0 0 0 13 15Z\"/>"
},
"help-questionmark": {
"body": "<path fill=\"currentColor\" d=\"M13 22h-3v-3h3v3Zm0-5h-3v-.007c0-1.65 0-3.075.672-4.073a6.304 6.304 0 0 1 1.913-1.62c.334-.214.649-.417.914-.628a3.712 3.712 0 0 0 1.332-3.824A3.033 3.033 0 0 0 9 8H6a6 6 0 0 1 6-6a6.04 6.04 0 0 1 5.434 3.366a6.017 6.017 0 0 1-.934 6.3c-.453.502-.96.95-1.514 1.337a7.248 7.248 0 0 0-1.316 1.167A4.23 4.23 0 0 0 13 17Z\"/>"
},
"hide": {
"body": "<path fill=\"currentColor\" d=\"m19.97 21.385l-3.356-3.356c-1.448.66-3.023.991-4.614.973c-1.64.02-3.263-.334-4.746-1.035a10.073 10.073 0 0 1-3.041-2.282A10.499 10.499 0 0 1 2.1 12.316l-.1-.314l.105-.316a10.786 10.786 0 0 1 3.516-4.651L3 4.414l1.413-1.412l16.969 16.969l-1.41 1.414h-.002ZM7.036 8.451a8.574 8.574 0 0 0-2.919 3.551a8.308 8.308 0 0 0 7.883 5a9.308 9.308 0 0 0 3.087-.5l-1.8-1.8c-.4.196-.84.299-1.287.3a3.019 3.019 0 0 1-3-3c0-.447.103-.888.3-1.29L7.036 8.451Zm12.816 7.161l-1.392-1.391a8.594 8.594 0 0 0 1.423-2.219a8.3 8.3 0 0 0-7.883-5c-.247 0-.495.009-.735.026L9.5 5.261c.822-.176 1.66-.263 2.5-.259c1.64-.02 3.263.334 4.746 1.035c1.15.56 2.181 1.335 3.041 2.282a10.5 10.5 0 0 1 2.113 3.365l.1.318l-.105.316a10.427 10.427 0 0 1-2.042 3.3l-.001-.006Z\"/>"
},
"home-alt-check": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.643a1.01 1.01 0 0 1 .293-.65l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1ZM12 5.828l-6 6V20h12v-8.172l-6-6Zm-1.5 12.731l-2.706-2.7L9.2 14.441l1.3 1.292l4.3-4.292l1.412 1.416l-5.712 5.701v.001Z\"/>"
},
"home-alt-fill": {
"body": "<path fill=\"currentColor\" d=\"m2 13l9.293-9.293a1 1 0 0 1 1.414 0L22 13h-2v8a1 1 0 0 1-1 1h-5v-7h-4v7H5a1 1 0 0 1-1-1v-8H2Z\"/>"
},
"home-alt-minus": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.643a1.01 1.01 0 0 1 .293-.65l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1ZM12 5.828l-6 6V20h12v-8.172l-6-6ZM16 16H8v-2h8v2Z\"/>"
},
"home-alt-outline": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-8H2l9.292-9.293a1 1 0 0 1 1.415 0L22 13h-2v8a1 1 0 0 1-1 1Zm-9-7h4v5h4v-8.172l-6-6l-6 6V20h4v-5Z\"/>"
},
"home-alt-plus": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.643a1.01 1.01 0 0 1 .293-.65l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1ZM12 5.828l-6 6V20h12v-8.172l-6-6Zm1 12.171h-2v-3H8v-2h3v-3h2v3h3v2h-3v3Z\"/>"
},
"home-alt-x": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.643a1.01 1.01 0 0 1 .293-.65l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1ZM12 5.828l-6 6V20h12v-8.172l-6-6ZM9.878 18.071l-1.413-1.414l2.121-2.121l-2.121-2.122L9.879 11L12 13.121L14.121 11l1.414 1.414l-2.121 2.121l2.121 2.121l-1.413 1.413L12 15.949l-2.121 2.122h-.001Z\"/>"
},
"home-check": {
"body": "<path fill=\"currentColor\" d=\"M16 20H5a1 1 0 0 1-1-1v-7.86a1 1 0 0 1 .281-.695l5.5-5.7a1 1 0 0 1 1.439 0l2.8 2.9l-1.43 1.402L10.5 6.88L6 11.54v6.455h11v1A1 1 0 0 1 16 20Zm-1.712-4l-2.706-2.7L13 11.882l1.292 1.291l4.3-4.292L20 10.298l-5.712 5.7V16Z\"/>"
},
"home-fill": {
"body": "<path fill=\"currentColor\" d=\"m4.293 10.707l7-7a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1 .293.707V21a1 1 0 0 1-1 1h-5v-7h-4v7H5a1 1 0 0 1-1-1v-9.586a1 1 0 0 1 .293-.707Z\"/>"
},
"home-heart": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.643a1.01 1.01 0 0 1 .293-.65l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1ZM12 5.828l-6 6V20h12v-8.172l-6-6Zm0 12.171a22.972 22.972 0 0 0-.692-.582l-.047-.038c-1.157-.944-2.6-2.119-2.6-3.58A1.8 1.8 0 0 1 10.5 12a2.008 2.008 0 0 1 1.5.667A2.009 2.009 0 0 1 13.5 12a1.8 1.8 0 0 1 1.835 1.8c0 1.466-1.452 2.649-2.618 3.6l-.057.047c-.237.194-.461.377-.661.554l.001-.002Z\"/>"
},
"home-heart-1": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.643a1.01 1.01 0 0 1 .293-.65l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1Zm-7.622-4.525c.22.18.433.356.622.525c.2-.177.424-.36.662-.554l.057-.047c1.166-.951 2.618-2.134 2.618-3.6A1.8 1.8 0 0 0 13.5 12a2.008 2.008 0 0 0-1.5.667A2.007 2.007 0 0 0 10.5 12a1.8 1.8 0 0 0-1.835 1.8c0 1.461 1.44 2.636 2.6 3.58h-.001h.005l.018.015h.005l.008.019l.052.043l.013.01h.006l.007.008Z\"/>"
},
"home-minus": {
"body": "<path fill=\"currentColor\" d=\"M16 20H5a1 1 0 0 1-1-1v-7.86a1 1 0 0 1 .281-.695l5.5-5.7a1 1 0 0 1 1.439 0l2.8 2.9l-1.43 1.402L10.5 6.88L6 11.54v6.455h11v1A1 1 0 0 1 16 20Zm4-6h-8v-2h8v2Z\"/>"
},
"home-outline": {
"body": "<path fill=\"currentColor\" d=\"M19 22H5a1 1 0 0 1-1-1v-9.586a1 1 0 0 1 .293-.707l7-7a1 1 0 0 1 1.415 0l7 7a.994.994 0 0 1 .292.707V21a1 1 0 0 1-1 1Zm-9-7h4v5h4v-8.172l-6-6l-6 6V20h4v-5Z\"/>"
},
"home-plus": {
"body": "<path fill=\"currentColor\" d=\"M16 20H5a1 1 0 0 1-1-1v-7.86a1 1 0 0 1 .281-.695l5.5-5.7a1 1 0 0 1 1.439 0l1.651 1.713l-1.433 1.394l-.938-.972L6 11.54v6.455h11v1A1 1 0 0 1 16 20Zm1-4h-2v-3h-3v-2h3V8h2v3h3v2h-3v3Z\"/>"
},
"home-x": {
"body": "<path fill=\"currentColor\" d=\"M16 20H5a1 1 0 0 1-1-1v-7.86a1 1 0 0 1 .281-.695l5.5-5.7a1 1 0 0 1 1.439 0l2.136 2.215l-1.434 1.394L10.5 6.88L6 11.54v6.455h11v1A1 1 0 0 1 16 20Zm-1.658-4l-1.413-1.414l2.121-2.122l-2.121-2.124l1.414-1.414l2.121 2.121l2.121-2.121L20 10.34l-2.121 2.124L20 14.586l-1.414 1.413l-2.122-2.121L14.343 16h-.001Z\"/>"
},
"html5": {
"body": "<path fill=\"currentColor\" d=\"m11.983 20.988l-6.414-1.826l-1.433-16.15h15.729l-1.429 16.15l-6.453 1.826Zm-4.292-7.691l.245 3.123l4.063 1.085l4.028-1.08l.559-6.113H9.402l-.173-2.033h7.533l.174-1.961h-9.87l.522 6h6.836l-.243 2.566l-2.179.6l-2.216-.607l-.141-1.58H7.691Z\"/>"
},
"id-card": {
"body": "<path fill=\"currentColor\" d=\"M20 20H4a1.943 1.943 0 0 1-2-1.876V5.875A1.942 1.942 0 0 1 4 4h16a1.942 1.942 0 0 1 2 1.875v12.25A1.943 1.943 0 0 1 20 20ZM4 6v11.989L20 18V6.011L4 6Zm9.43 10H6a3.21 3.21 0 0 1 1.093-2.14a3.829 3.829 0 0 1 2.622-1.11c.984.02 1.923.417 2.622 1.11A3.212 3.212 0 0 1 13.43 16ZM18 15h-3v-2h3v2Zm-8.285-3a1.934 1.934 0 0 1-2-2a1.935 1.935 0 0 1 2-2a1.935 1.935 0 0 1 2 2a1.934 1.934 0 0 1-2 2ZM18 11h-4V9h4v2Z\"/>"
},
"image": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 5v14h14V5H5Zm13 12H6l3-4l1 1l3-4l5 7Zm-9.5-6a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3Z\"/>"
},
"image-alt": {
"body": "<path fill=\"currentColor\" d=\"M8 18h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2Zm0-2V4h12v12H8Z\"/><path fill=\"currentColor\" d=\"M2 8h2v12h12v2H4a2 2 0 0 1-2-2V8Z\"/><path fill=\"currentColor\" d=\"M10 14h9l-3.75-5.444l-2.25 3.11l-.75-.777L10 14Zm.75-5.833c0 .644.504 1.166 1.125 1.166S13 8.811 13 8.167C13 7.522 12.496 7 11.875 7s-1.125.522-1.125 1.167Z\"/>"
},
"info-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10ZM9.99 10.99V13h1v4h3.02v-2H13l.01-4.009l-3.02-.001Zm1-3.99v2.019h2.02V7h-2.02Z\"/>"
},
"info-circle-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-8-9.828A8 8 0 1 0 4 12v.172ZM14 17h-3v-4h-1v-2h3v4h1v2Zm-1-8h-2V7h2v2Z\"/>"
},
"info-square": {
"body": "<path fill=\"currentColor\" d=\"M20 21H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1ZM10 11v2h1v4h3v-2h-1v-4h-3Zm1-4v2h2V7h-2Z\"/>"
},
"info-square-outline": {
"body": "<path fill=\"currentColor\" d=\"M20 21H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1ZM5 5v14h14V5H5Zm9 12h-3v-4h-1v-2h3v4h1v2Zm-1-8h-2V7h2v2Z\"/>"
},
"instagram": {
"body": "<path fill=\"currentColor\" d=\"M12.002 21.041c-2.46 0-2.75-.013-3.71-.055a6.583 6.583 0 0 1-2.185-.45a4.619 4.619 0 0 1-2.63-2.631a6.591 6.591 0 0 1-.419-2.187c-.056-.958-.056-1.272-.056-3.713c0-2.467.013-2.755.056-3.71a6.59 6.59 0 0 1 .419-2.184A4.61 4.61 0 0 1 6.11 3.479a6.533 6.533 0 0 1 2.184-.42c.955-.054 1.269-.054 3.708-.054c2.48 0 2.765.013 3.71.054c.748.014 1.49.156 2.19.42a4.615 4.615 0 0 1 2.633 2.632c.267.71.41 1.46.421 2.217c.056.958.056 1.271.056 3.711s-.014 2.76-.056 3.707a6.603 6.603 0 0 1-.42 2.189a4.624 4.624 0 0 1-2.634 2.632c-.7.262-1.439.404-2.186.419c-.955.055-1.268.055-3.714.055Zm-.034-16.453c-2.446 0-2.7.012-3.655.055a4.99 4.99 0 0 0-1.67.311a2.99 2.99 0 0 0-1.718 1.712c-.2.54-.305 1.111-.311 1.687c-.053.969-.053 1.223-.053 3.652c0 2.4.009 2.691.053 3.654c.009.57.114 1.135.311 1.67c.306.787.93 1.409 1.719 1.711a4.92 4.92 0 0 0 1.669.311c.968.056 1.223.056 3.655.056c2.453 0 2.707-.012 3.654-.056a4.962 4.962 0 0 0 1.67-.311a3 3 0 0 0 1.71-1.709c.2-.54.305-1.112.311-1.688h.011c.043-.956.043-1.211.043-3.654c0-2.443-.011-2.7-.054-3.655a5.06 5.06 0 0 0-.311-1.668a3 3 0 0 0-1.71-1.712a4.94 4.94 0 0 0-1.67-.311c-.967-.055-1.22-.055-3.654-.055Zm.034 12.036A4.623 4.623 0 1 1 16.622 12a4.63 4.63 0 0 1-4.62 4.624Zm0-7.626a3 3 0 1 0 3 3a3.007 3.007 0 0 0-3-3Zm4.8-.713a1.078 1.078 0 1 1 .008-2.156a1.078 1.078 0 0 1-.008 2.156Z\"/>"
},
"invision": {
"body": "<path fill=\"currentColor\" d=\"M19.362 20.993H4.638a1.63 1.63 0 0 1-1.63-1.63V4.637c.001-.9.73-1.629 1.63-1.63h14.723c.9.001 1.63.73 1.632 1.63v14.724c-.001.9-.73 1.63-1.63 1.631ZM6.673 9.67l-.388 1.43h1.278l-.826 3.366c-.06.266-.094.538-.1.811a1.444 1.444 0 0 0 1.621 1.584c.93-.04 1.765-.58 2.183-1.412l-.327 1.3h1.811l1.033-4.14c.26-1.06.772-1.6 1.52-1.6a.907.907 0 0 1 .97.983c.003.197-.026.393-.085.581l-.528 1.906a2.904 2.904 0 0 0-.114.812a1.48 1.48 0 0 0 1.651 1.566c1.03 0 1.748-.7 2.137-2.08l-.707-.274c-.276.79-.57 1.173-.9 1.173c-.24 0-.368-.167-.368-.484c.007-.166.032-.331.075-.492l.52-1.858c.118-.382.179-.78.18-1.18a1.9 1.9 0 0 0-1.855-2.11a3.13 3.13 0 0 0-2.406 1.761l.36-1.617H10.62l-.39 1.4h1.293l-.8 3.188a2.09 2.09 0 0 1-1.826 1.383a.515.515 0 0 1-.092-.007c-.243-.057-.384-.15-.384-.452c.006-.25.043-.498.11-.738l1.216-4.8H6.673Zm2.345-3.162a1.09 1.09 0 1 0 0 2.18v-.025c.292.002.572-.11.781-.314a1.06 1.06 0 0 0 .317-.766a1.089 1.089 0 0 0-1.098-1.075Z\"/>"
},
"italic": {
"body": "<path fill=\"currentColor\" d=\"M13 20H7v-2h1.927l4.116-12H11V4h6v2h-1.927l-4.116 12H13v2Z\"/>"
},
"javascript": {
"body": "<path fill=\"currentColor\" d=\"M21 21H3V3h18v18ZM9.1 17.232l-1.368.844c.213.468.559.863.994 1.137c.473.271 1.01.41 1.555.4c.286-.002.57-.035.849-.1a2.108 2.108 0 0 0 1.358-1.058c.28-.66.384-1.382.3-2.094v-.415c.005-1.027 0-2.072 0-3.084v-1.593H11.1v4.897c.05.5.014 1.003-.107 1.49a.786.786 0 0 1-.759.422a1.43 1.43 0 0 1-.416-.063a1.43 1.43 0 0 1-.623-.641l-.033-.056c-.031-.053-.052-.09-.062-.09v.004Zm5.949-.2l-1.373.787c.112.246.268.47.458.662c.047.052.1.108.149.17c.671.6 1.549.918 2.449.887a2.63 2.63 0 0 0 2.7-1.641v-.008c.114-.4.132-.82.053-1.228l.034.049c-.148-.929-.821-1.574-2.252-2.155c-.111-.052-.226-.1-.338-.15c-.445-.192-.865-.372-1.011-.7a.886.886 0 0 1-.034-.529a.762.762 0 0 1 .808-.543c.111 0 .222.016.329.048c.33.11.595.357.732.676c.775-.507.775-.507 1.316-.844a3.247 3.247 0 0 0-.439-.586a2.466 2.466 0 0 0-2-.776h-.12l-.528.067a2.435 2.435 0 0 0-1.283.754a2.354 2.354 0 0 0 .427 3.354c.438.3.91.546 1.407.733c.641.27 1.194.5 1.306.921a.811.811 0 0 1-.135.707a1.3 1.3 0 0 1-1.027.37a2.58 2.58 0 0 1-.313-.02a1.977 1.977 0 0 1-1.317-1.008l.002.003Z\"/>"
},
"label": {
"body": "<path fill=\"currentColor\" d=\"m15.5 19l-11-.01a2 2 0 0 1-2-1.99V7a2 2 0 0 1 2-1.99l11-.01a2 2 0 0 1 1.63.84L21.5 12l-4.37 6.16a2 2 0 0 1-1.63.84ZM4.5 7v10h11l3.55-5l-3.55-5h-11Z\"/>"
},
"laptop": {
"body": "<path fill=\"currentColor\" d=\"M21 19H3a2 2 0 0 1-2-2v-1h2V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v9h2v1a2 2 0 0 1-2 2ZM5 7v9h14V7H5Z\"/>"
},
"last-page": {
"body": "<path fill=\"currentColor\" d=\"m7.558 18.01l-1.414-1.413l4.6-4.6l-4.6-4.593L7.558 5.99L13.569 12l-6.01 6.01h-.001Zm10.3-.01h-2V6h2v12Z\"/>"
},
"layers": {
"body": "<path fill=\"currentColor\" d=\"m12 21.135l-9-7l1.62-1.26l7.37 5.73l7.38-5.74l1.63 1.27l-9 7Zm0-4.27l-7.37-5.73L3 9.865l9-7l9 7l-1.64 1.27l-7.36 5.73Z\"/>"
},
"layers-alt": {
"body": "<path fill=\"currentColor\" d=\"m12 23.27l-9-7l1.62-1.26l7.37 5.73l7.38-5.739L21 16.27l-9 7ZM12 19l-9-7l1.62-1.26l7.37 5.73l7.38-5.74L21 12l-9 7Zm0-4.27L4.63 9L3 7.73l9-7l9 7L19.36 9L12 14.73Z\"/>"
},
"line-break": {
"body": "<path fill=\"currentColor\" d=\"M18 6v6H7.83l2.58-2.59L9 8l-5 5l5 5l1.41-1.41L7.83 14H20V6h-2Z\"/>"
},
"line-chart-down": {
"body": "<path fill=\"currentColor\" d=\"M21 21H4a1 1 0 0 1-1-1V3h2v16h16v2Zm-1.373-5l-4.17-4.082l-2.228 2.182a.985.985 0 0 1-1.373 0L7 9.344L8.373 8l4.17 4.082L14.77 9.9a.985.985 0 0 1 1.373 0L21 14.656L19.627 16Z\"/>"
},
"line-chart-up": {
"body": "<path fill=\"currentColor\" d=\"M21 21H4a1 1 0 0 1-1-1V3h2v16h16v2ZM8.373 16L7 14.656L11.856 9.9a.985.985 0 0 1 1.373 0l2.227 2.181L19.627 8L21 9.344L16.144 14.1a.985.985 0 0 1-1.373 0l-2.228-2.182L8.374 16h-.001Z\"/>"
},
"line-l": {
"body": "<path fill=\"currentColor\" d=\"M13 4h-2v16h2V4Z\"/>"
},
"line-m": {
"body": "<path fill=\"currentColor\" d=\"M13 6h-2v12h2V6Z\"/>"
},
"line-s": {
"body": "<path fill=\"currentColor\" d=\"M13 8h-2v8h2V8Z\"/>"
},
"line-sx": {
"body": "<path fill=\"currentColor\" d=\"M13 10h-2v4h2v-4Z\"/>"
},
"line-xl": {
"body": "<path fill=\"currentColor\" d=\"M13 2h-2v20h2V2Z\"/>"
},
"link": {
"body": "<path fill=\"currentColor\" d=\"M17 17h-3v-2h3a3 3 0 1 0 0-6h-3V7h3a5 5 0 0 1 0 10Zm-7 0H7A5 5 0 0 1 7 7h3v2H7a3 3 0 1 0 0 6h3v2Zm7-4H7v-2h10v2Z\"/>"
},
"link-02": {
"body": "<path fill=\"currentColor\" d=\"M8.465 20.535A5 5 0 0 1 4.929 12L7.05 9.878l1.414 1.414l-2.121 2.121a3 3 0 1 0 4.243 4.243l2.12-2.121l1.415 1.415L12 19.071a4.969 4.969 0 0 1-3.536 1.464Zm.707-4.293l-1.414-1.414l7.07-7.071l1.415 1.414l-7.07 7.07l-.001.001Zm7.779-2.121l-1.415-1.414l2.12-2.121a3 3 0 1 0-4.241-4.243l-2.122 2.121L9.879 7.05L12 4.928a5 5 0 0 1 7.07 7.071l-2.12 2.121v.001Z\"/>"
},
"linkedin": {
"body": "<path fill=\"currentColor\" d=\"M13 21H9V9h4v2a4.618 4.618 0 0 1 3.525-1.763A4.5 4.5 0 0 1 21 13.75V21h-4v-6.75a2.265 2.265 0 0 0-2.247-1.944A1.815 1.815 0 0 0 13 14.25V21Zm-6 0H3V9h4v12ZM5 7a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"linkpath": {
"body": "<path fill=\"currentColor\" d=\"M10.396 22a1.84 1.84 0 0 1-.918-.246l-4.52-2.61a1.84 1.84 0 0 1-.917-1.588v-5.22a1.84 1.84 0 0 1 .917-1.589l1.373-.793v1.71a2.76 2.76 0 0 0 1.376 2.383l4.521 2.61a2.75 2.75 0 0 0 2.752 0l1.772-1.022v1.921a1.84 1.84 0 0 1-.917 1.589l-4.521 2.61a1.84 1.84 0 0 1-.918.245Zm3.207-5.891c-.322 0-.638-.085-.917-.246l-4.521-2.61a1.84 1.84 0 0 1-.918-1.589v-5.22c.001-.655.35-1.26.918-1.59l4.521-2.608a1.834 1.834 0 0 1 1.834 0l4.521 2.61c.567.328.916.934.917 1.589v5.22c0 .655-.35 1.26-.917 1.589l-4.521 2.61c-.279.16-.595.245-.917.245Z\"/>"
},
"list-check": {
"body": "<path fill=\"currentColor\" d=\"m15 19.411l-2.7-2.7l1.414-1.416L15 16.583l5.008-5L21.419 13L15 19.41v.001ZM11 17H2v-2h9v2Zm4-4H2v-2h13v2Zm0-4H2V7h13v2Z\"/>"
},
"list-checklist": {
"body": "<path fill=\"currentColor\" d=\"M8 5h13v2H8V5Zm-5-.5h3v3H3v-3Zm0 6h3v3H3v-3Zm0 6h3v3H3v-3ZM8 11h13v2H8v-2Zm0 6h13v2H8v-2Z\"/>"
},
"list-checklist-alt": {
"body": "<path fill=\"currentColor\" d=\"M11 4h10v2H11V4Zm0 4h6v2h-6V8Zm0 6h10v2H11v-2Zm0 4h6v2h-6v-2ZM3 4h6v6H3V4Zm2 2v2h2V6H5Zm-2 8h6v6H3v-6Zm2 2v2h2v-2H5Z\"/>"
},
"list-minus": {
"body": "<path fill=\"currentColor\" d=\"M22 17h-9v-2h9v2Zm-11 0H2v-2h9v2Zm4-4H2v-2h13v2Zm0-4H2V7h13v2Z\"/>"
},
"list-ol": {
"body": "<path fill=\"currentColor\" d=\"M6.983 19H4v-1h1.989v-.5h-.994v-1h.995V16H4v-1h2.983v4ZM21 18H9.069v-2H21v2ZM6.983 14H4v-.9L5.79 11H4v-1h2.983v.9L5.193 13h1.79v1ZM21 13H9.069v-2H21v2ZM6.486 9h-.995V6H4.5V5h1.986v4ZM21 8H9.069V6H21v2Z\"/>"
},
"list-plus": {
"body": "<path fill=\"currentColor\" d=\"M19 20h-2v-3h-3v-2h3v-3h2v3h3v2h-3v3Zm-7-3H2v-2h10v2Zm3-4H2v-2h13v2Zm0-4H2V7h13v2Z\"/>"
},
"list-ul": {
"body": "<path fill=\"currentColor\" d=\"M20 18H8v-2h12v2ZM6 18H4v-2h2v2Zm14-5H8v-2h12v2ZM6 13H4v-2h2v2Zm14-5H8.023V6H20v2ZM6 8H4V6h2v2Z\"/>"
},
"loading": {
"body": "<path fill=\"currentColor\" d=\"M6 16a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm6-2a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm6-2a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"location": {
"body": "<path fill=\"currentColor\" d=\"M12 21a29.776 29.776 0 0 1-3.5-3.531C6.9 15.558 5 12.712 5 10a7 7 0 0 1 11.952-4.951A6.955 6.955 0 0 1 19 10c0 2.712-1.9 5.558-3.5 7.469A29.777 29.777 0 0 1 12 21Zm0-14a3 3 0 1 0 0 6a3 3 0 0 0 0-6Z\"/>"
},
"location-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 21a29.776 29.776 0 0 1-3.5-3.531C6.9 15.558 5 12.712 5 10a7 7 0 0 1 11.952-4.951A6.955 6.955 0 0 1 19 10c0 2.712-1.9 5.558-3.5 7.469A29.777 29.777 0 0 1 12 21Zm0-16a5.006 5.006 0 0 0-5 5c0 1.166.527 3.185 3.035 6.186A27.93 27.93 0 0 0 12 18.3a28.121 28.121 0 0 0 1.966-2.111C16.473 13.184 17 11.165 17 10a5.006 5.006 0 0 0-5-5Zm0 8a3 3 0 1 1 0-6a3 3 0 0 1 0 6Z\"/>"
},
"log-out": {
"body": "<path fill=\"currentColor\" d=\"M19 21h-9a2 2 0 0 1-2-2v-4h2v4h9V5h-9v4H8V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2Zm-7-5v-3H3v-2h9V8l5 4l-5 4Z\"/>"
},
"long-bottom-down": {
"body": "<path fill=\"currentColor\" d=\"M7.021 15.55L7.014 12H5v7h7v-2.014l-3.55-.007L19 6.429L17.571 5L7.021 15.55Z\"/>"
},
"long-bottom-up": {
"body": "<path fill=\"currentColor\" d=\"m16.979 8.45l.007 3.55H19V5h-7v2.014l3.55.007L5 17.571L6.429 19l10.55-10.55Z\"/>"
},
"long-down": {
"body": "<path fill=\"currentColor\" d=\"m11 18.17l-2.59-2.58L7 17l5 5l5-5l-1.41-1.41L13 18.17V2h-2v16.17Z\"/>"
},
"long-left": {
"body": "<path fill=\"currentColor\" d=\"m5.83 11l2.58-2.59L7 7l-5 5l5 5l1.41-1.41L5.83 13H22v-2H5.83Z\"/>"
},
"long-right": {
"body": "<path fill=\"currentColor\" d=\"m18.17 13l-2.58 2.59L17 17l5-5l-5-5l-1.41 1.41L18.17 11H2v2h16.17Z\"/>"
},
"long-up": {
"body": "<path fill=\"currentColor\" d=\"m13 5.83l2.59 2.58L17 7l-5-5l-5 5l1.41 1.41L11 5.83V22h2V5.83Z\"/>"
},
"long-up-left": {
"body": "<path fill=\"currentColor\" d=\"M8.45 7.021L12 7.014V5H5v7h2.014l.007-3.55L17.571 19L19 17.571L8.45 7.021Z\"/>"
},
"long-up-right": {
"body": "<path fill=\"currentColor\" d=\"m16.979 8.45l.007 3.55H19V5h-7v2.014l3.55.007L5 17.571L6.429 19l10.55-10.55Z\"/>"
},
"mail": {
"body": "<path fill=\"currentColor\" d=\"M20 20H4a2 2 0 0 1-2-2V5.913A2 2 0 0 1 4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM4 7.868V18h16V7.868L12 13.2L4 7.868ZM4.8 6l7.2 4.8L19.2 6H4.8Z\"/>"
},
"mail-open": {
"body": "<path fill=\"currentColor\" d=\"M20 22H4a2 2 0 0 1-2-2V9.049a2.031 2.031 0 0 1 .971-1.632l8-4.8a2 2 0 0 1 2.057 0l8 4.8c.601.363.97 1.013.972 1.715V20a2 2 0 0 1-2 2ZM4 9.868V20h16V9.868l-8 5.333l-8-5.333Zm8-5.536l-6.684 4.01L12 12.798l6.683-4.456L12 4.332Z\"/>"
},
"map": {
"body": "<path fill=\"currentColor\" d=\"M9.108 22.092L2 19.721V3.613l6.892 2.3l7.031-4.021L22 4.323v16.154l-5.923-2.37l-6.968 3.985h-.001ZM4 6.392v11.887l4 1.333V7.72L4 6.392Zm10-1.1L10 7.58v11.7l4-2.288v-11.7Zm2.077-1.186L16 4.152v11.771l4 1.6V5.676l-3.923-1.57Z\"/>"
},
"mention": {
"body": "<path fill=\"currentColor\" d=\"M12 4c-4.411 0-8 3.589-8 8s3.589 8 8 8c1.407 0 2.79-.37 4.001-1.07L15 17.197A5.997 5.997 0 0 1 12 18c-3.309 0-6-2.691-6-6s2.691-6 6-6s6 2.691 6 6v.871c0 .654-.42 1.129-1 1.129c-.551 0-1-.449-1-1V9h-1.382A3.966 3.966 0 0 0 12 8c-2.206 0-4 1.794-4 4s1.794 4 4 4c1.05 0 2-.415 2.714-1.08A2.981 2.981 0 0 0 17 16c1.682 0 3-1.374 3-3.129V12c0-4.411-3.589-8-8-8Zm0 10c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2Z\"/>"
},
"menu-alt-01": {
"body": "<path fill=\"currentColor\" d=\"M21 18h-9v-2h9v2Zm0-5H3v-2h18v2Zm0-5H3V6h18v2Z\"/>"
},
"menu-alt-02": {
"body": "<path fill=\"currentColor\" d=\"M21 18H9v-2h12v2Zm0-5H3v-2h18v2Zm0-5H9V6h12v2Z\"/>"
},
"menu-alt-03": {
"body": "<path fill=\"currentColor\" d=\"M15 18H3v-2h12v2Zm6-5H3v-2h18v2Zm-6-5H3V6h12v2Z\"/>"
},
"menu-alt-04": {
"body": "<path fill=\"currentColor\" d=\"M21 18H3v-2h18v2Zm0-5H3v-2h18v2Zm0-5h-9V6h9v2Z\"/>"
},
"menu-alt-05": {
"body": "<path fill=\"currentColor\" d=\"M12 18H3v-2h9v2Zm9-5H3v-2h18v2Zm0-5h-9V6h9v2Z\"/>"
},
"menu-duo": {
"body": "<path fill=\"currentColor\" d=\"M21 16H3v-2h18v2Zm0-6H3V8h18v2Z\"/>"
},
"message": {
"body": "<path fill=\"currentColor\" d=\"M3 21V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9c-.433 0-.854.14-1.2.4L3 21ZM5 5v12l2.134-1.6a1.99 1.99 0 0 1 1.2-.4H19V5H5Z\"/>"
},
"message-check": {
"body": "<path fill=\"currentColor\" d=\"M3 21V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9c-.433 0-.854.14-1.2.4L3 21ZM5 5v12l2.134-1.6a1.99 1.99 0 0 1 1.2-.4H19V5H5Zm6 8.561L7.293 9.853L8.707 8.44L11 10.733l4.293-4.293l1.414 1.414L11 13.56v.001Z\"/>"
},
"message-circle": {
"body": "<path fill=\"currentColor\" d=\"m8.051 17.828l.654.35a6.96 6.96 0 0 0 3.292.822H12a7 7 0 1 0-7-7v.003a6.96 6.96 0 0 0 .822 3.292l.35.654l-.538 2.417l2.417-.538ZM3 21l1.058-4.762A9 9 0 0 1 12 3a9 9 0 0 1 9 9a9 9 0 0 1-13.238 7.942L3 21Z\"/>"
},
"message-close": {
"body": "<path fill=\"currentColor\" d=\"M9.879 13.536L8.464 12.12L10.586 10L8.464 7.879L9.88 6.464L12 8.586l2.121-2.122l1.415 1.415L13.414 10l2.122 2.121l-1.415 1.415L12 11.414l-2.121 2.122Z\"/><path fill=\"currentColor\" d=\"M3 5v16l4.8-3.6c.346-.26.767-.4 1.2-.4h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2Zm2 12V5h14v10H8.334a1.984 1.984 0 0 0-1.2.4L5 17Z\"/>"
},
"message-minus": {
"body": "<path fill=\"currentColor\" d=\"M3 21V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9c-.433 0-.854.14-1.2.4L3 21ZM5 5v12l2.134-1.6a1.99 1.99 0 0 1 1.2-.4H19V5H5Zm11 6H8V9h8v2Z\"/>"
},
"message-plus": {
"body": "<path fill=\"currentColor\" d=\"M3 21V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9c-.433 0-.854.14-1.2.4L3 21ZM5 5v12l2.134-1.6a1.99 1.99 0 0 1 1.2-.4H19V5H5Zm8 9h-2v-3H8V9h3V6h2v3h3v2h-3v3Z\"/>"
},
"message-plus-alt": {
"body": "<path fill=\"currentColor\" d=\"M19 10h-2V7h-3V5h3V2h2v3h3v2h-3v3Z\"/><path fill=\"currentColor\" d=\"M21 12h-2v3H8.334a1.984 1.984 0 0 0-1.2.4L5 17V5h7V3H5a2 2 0 0 0-2 2v16l4.8-3.6c.346-.26.767-.4 1.2-.4h10a2 2 0 0 0 2-2v-3Z\"/>"
},
"message-round": {
"body": "<path fill=\"currentColor\" d=\"m5.124 12.114l.003.012a5.909 5.909 0 0 0 3.336 4.16L12 17.894V16h2a5 5 0 0 0 5-5v-1a5 5 0 0 0-5-5h-4a5 5 0 0 0-5 5v1c0 .38.042.748.121 1.1l.003.014ZM14 21l-6.364-2.893A7.909 7.909 0 0 1 3.17 12.54A7.024 7.024 0 0 1 3 11v-1a7 7 0 0 1 7-7h4a7 7 0 0 1 7 7v1a7 7 0 0 1-7 7v3Z\"/>"
},
"message-writing": {
"body": "<path fill=\"currentColor\" d=\"M9 9H7v2h2V9Zm2 0h2v2h-2V9Zm6 0h-2v2h2V9Z\"/><path fill=\"currentColor\" d=\"M3 5v16l4.8-3.6c.346-.26.767-.4 1.2-.4h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2Zm2 12V5h14v10H8.334a1.984 1.984 0 0 0-1.2.4L5 17Z\"/>"
},
"messenger": {
"body": "<path fill=\"currentColor\" d=\"M6.401 21v-3.189a8.1 8.1 0 0 1-3.31-6.479C3.09 6.738 7.09 3 12 3s8.91 3.738 8.91 8.332c.001 4.594-4 8.33-8.91 8.33a9.463 9.463 0 0 1-2.559-.349L6.403 21h-.002Zm4.66-11.931l-4.866 5.163l4.438-2.454l2.3 2.394L17.8 9.01l-4.434 2.454l-2.305-2.395Z\"/>"
},
"minus": {
"body": "<path fill=\"currentColor\" d=\"M5 13v-2h14v2H5Z\"/>"
},
"minus-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22ZM7 11v2h10v-2H7Z\"/>"
},
"minus-circle-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-8-9.828A8 8 0 1 0 4 12v.172ZM17 13H7v-2h10v2Z\"/>"
},
"minus-square": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 5v14h14V5H5Zm12 8H7v-2h10v2Z\"/>"
},
"mobile": {
"body": "<path fill=\"currentColor\" d=\"M17 23H7a2 2 0 0 1-2-2V2.913A2 2 0 0 1 7 1h10a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2ZM7 3v18h10V3h-2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2H7Z\"/>"
},
"mobile-alt": {
"body": "<path fill=\"currentColor\" d=\"M16.75 23h-10a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2Zm-10-20v18h10V3h-10Zm5 17a1 1 0 1 1 0-2a1 1 0 0 1 0 2Z\"/>"
},
"monitor": {
"body": "<path fill=\"currentColor\" d=\"M17 21H7v-2h2v-1H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-6v1h2v2ZM3 5v11h18V5H3Z\"/>"
},
"moon": {
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M18.248 16.997A10.76 10.76 0 0 1 18 17C11.925 17 7 12.075 7 6c0-.083 0-.166.003-.248a8 8 0 1 0 11.245 11.245Zm1.218-2.116A9 9 0 0 1 9.822 2.238A9.999 9.999 0 0 0 2 12c0 5.523 4.477 10 10 10a10 10 0 0 0 9.762-7.822a8.92 8.92 0 0 1-2.296.703Z\" clip-rule=\"evenodd\"/>"
},
"more-horizontal": {
"body": "<path fill=\"currentColor\" d=\"M18 14a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm-6 0a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"more-vertical": {
"body": "<path fill=\"currentColor\" d=\"M12 20a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm0-6a2 2 0 1 1 0-4a2 2 0 0 1 0 4Zm0-6a2 2 0 1 1 0-4a2 2 0 0 1 0 4Z\"/>"
},
"move": {
"body": "<path fill=\"currentColor\" d=\"M13 11V6h3l-4-4l-4 4h3v5H6V8l-4 4l4 4v-3h5v5H8l4 4l4-4h-3v-5h5v3l4-4l-4-4v3h-5Z\"/>"
},
"move-horizontal": {
"body": "<path fill=\"currentColor\" d=\"M7 11V7l-5 5l5 5v-4h10v4l5-5l-5-5v4H7Z\"/>"
},
"move-vertical": {
"body": "<path fill=\"currentColor\" d=\"m12 22l5-5h-4V7h4l-5-5l-5 5h4v10H7l5 5Z\"/>"
},
"note": {
"body": "<path fill=\"currentColor\" d=\"M13 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8a.126.126 0 0 1-.006.034a.149.149 0 0 0-.006.028a1.017 1.017 0 0 1-.051.259l-.009.027a.988.988 0 0 1-.225.359l-7 7A1 1 0 0 1 13 21ZM5 5v14h7v-6a1 1 0 0 1 1-1h6V5H5Zm9 9v3.587L17.586 14H14Z\"/>"
},
"notification": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.02 2.02 0 0 1-2.01-2h4a2.02 2.02 0 0 1-.15.78a2.042 2.042 0 0 1-1.44 1.18h-.047A1.922 1.922 0 0 1 12 22Zm8-3H4v-2l2-1v-5.5a8.065 8.065 0 0 1 .924-4.06A4.654 4.654 0 0 1 10 4.18V2h4v2.18c2.579.614 4 2.858 4 6.32V16l2 1v2Z\"/>"
},
"notification-active": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.02 2.02 0 0 1-2.01-2h4a2.02 2.02 0 0 1-.149.78a2.043 2.043 0 0 1-1.44 1.18h-.046A1.944 1.944 0 0 1 12 22Zm8-3H4v-2l2-1v-5.5a8.065 8.065 0 0 1 .924-4.06A4.654 4.654 0 0 1 10 4.18V2h4v2.18c2.579.614 4 2.858 4 6.32V16l2 1v2Zm1.97-9h-2a8.672 8.672 0 0 0-3.39-6.57L18 2a9.9 9.9 0 0 1 2.825 3.486A11.52 11.52 0 0 1 21.97 10ZM4 10H2c.07-1.567.46-3.103 1.145-4.514A9.9 9.9 0 0 1 5.97 2l1.42 1.43A8.67 8.67 0 0 0 4 10Z\"/>"
},
"notification-deactivated": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm7.585-.1l-2.9-2.9H4v-2l2-1v-5.5a10.57 10.57 0 0 1 .182-2L2.615 4.929L4.03 3.515L21 20.487L19.585 21.9ZM18 14.659L8.28 4.938A4.946 4.946 0 0 1 10 4.18V2h4v2.18c2.58.613 4 2.858 4 6.32v4.16v-.001Z\"/>"
},
"notification-dot": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm8-3H4v-2l2-1v-5.5a8.065 8.065 0 0 1 .924-4.06A4.654 4.654 0 0 1 10 4.18V2h3.646a4.5 4.5 0 0 0 4.3 7.4c.035.357.052.727.052 1.1V16l2 1v2H20ZM17 8a3 3 0 1 1 .01-6A3 3 0 0 1 17 8Z\"/>"
},
"notification-minus": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.02 2.02 0 0 1-2.01-2h4a2.02 2.02 0 0 1-.15.78a2.042 2.042 0 0 1-1.44 1.18a1.758 1.758 0 0 1-.4.04Zm8-3H4v-2l2-1v-5.5a8.065 8.065 0 0 1 .924-4.06A4.654 4.654 0 0 1 10 4.18V2h4v2.18h.011c.025 0 .049.01.073.016C16.611 4.845 18 7.082 18 10.5V16l2 1v2ZM9 11v2h6v-2H9Z\"/>"
},
"notification-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm8-3H4v-2l2-1v-5.5c0-3.462 1.421-5.707 4-6.32V2h4v2.18c2.579.612 4 2.856 4 6.32V16l2 1v2ZM12 5.75A3.6 3.6 0 0 0 8.875 7.2A5.692 5.692 0 0 0 8 10.5V17h8v-6.5a5.693 5.693 0 0 0-.875-3.3A3.6 3.6 0 0 0 12 5.75Z\"/>"
},
"notification-outline-dot": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm8-3H4v-2l2-1v-5.5c0-3.462 1.421-5.707 4-6.32V2h3a4.955 4.955 0 0 0-1 3c0 .251.019.502.056.751H12A3.6 3.6 0 0 0 8.875 7.2A5.692 5.692 0 0 0 8 10.5V17h8v-6.5c0-.211-.007-.414-.021-.6a5.044 5.044 0 0 0 2.006.007c.011.211.015.412.015.6V16l2 1v2ZM17 8a3 3 0 1 1 0-6a3 3 0 0 1 0 6Z\"/>"
},
"notification-outline-minus": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm8-3H4v-2l2-1v-5.5c0-3.462 1.421-5.707 4-6.32V2h4v2.18h.041l.042.01C16.611 4.843 18 7.08 18 10.5V16l2 1v2ZM12 5.75A3.6 3.6 0 0 0 8.875 7.2A5.692 5.692 0 0 0 8 10.5V17h8v-6.5a5.693 5.693 0 0 0-.875-3.3A3.6 3.6 0 0 0 12 5.75ZM15 13H9v-2h6v2Z\"/>"
},
"notification-outline-plus": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2 2 0 0 1-2-2h4a2 2 0 0 1-2 2Zm8-3H4v-2l2-1v-5.5c0-3.462 1.421-5.707 4-6.32V2h4v2.18c2.579.612 4 2.856 4 6.32V16l2 1v2ZM12 5.75A3.6 3.6 0 0 0 8.875 7.2A5.692 5.692 0 0 0 8 10.5V17h8v-6.5a5.693 5.693 0 0 0-.875-3.3A3.6 3.6 0 0 0 12 5.75ZM13 15h-2v-2H9v-2h2V9h2v2h2v2h-2v2Z\"/>"
},
"notification-plus": {
"body": "<path fill=\"currentColor\" d=\"M12 22a2.02 2.02 0 0 1-2.01-2h4a2.02 2.02 0 0 1-.15.78a2.042 2.042 0 0 1-1.44 1.18a1.758 1.758 0 0 1-.4.04Zm8-3H4v-2l2-1v-5.5a8.065 8.065 0 0 1 .924-4.06A4.654 4.654 0 0 1 10 4.18V2h4v2.18h.011c.025 0 .049.01.073.016C16.611 4.845 18 7.082 18 10.5V16l2 1v2ZM9 11v2h2v2h2v-2h2v-2h-2V9h-2v2H9Z\"/>"
},
"off-close": {
"body": "<path fill=\"currentColor\" d=\"M12 22A9.99 9.99 0 0 1 2 12v-.2a10.005 10.005 0 0 1 17.074-6.874A10 10 0 0 1 12 22Zm0-8.59L14.59 16L16 14.59L13.41 12L16 9.41L14.59 8L12 10.59L9.41 8L8 9.41L10.59 12L8 14.59L9.41 16L12 13.411v-.001Z\"/>"
},
"off-outline-close": {
"body": "<path fill=\"currentColor\" d=\"M12 22A10 10 0 0 1 4.926 4.926a10.004 10.004 0 1 1 14.148 14.148A9.936 9.936 0 0 1 12 22Zm-8-9.828A8 8 0 1 0 4 12v.172ZM9.409 16l-1.41-1.41L10.59 12L8 9.41L9.41 8L12 10.59L14.59 8L16 9.41L13.41 12L16 14.59L14.592 16L12 13.41L9.41 16h-.001Z\"/>"
},
"paragraph": {
"body": "<path fill=\"currentColor\" d=\"M6 9a5 5 0 0 1 5-5h7v2h-1v14h-2V6h-2v14h-2v-6a5 5 0 0 1-5-5Zm5 3V6a3 3 0 0 0 0 6Z\"/>"
},
"path": {
"body": "<path fill=\"currentColor\" d=\"M6 22a4 4 0 1 1 2.032-7.446l6.522-6.522a3.995 3.995 0 1 1 1.414 1.415l-6.521 6.521A4 4 0 0 1 6 22Zm0-6a2 2 0 1 0 0 4a2 2 0 0 0 0-4ZM18 4a2 2 0 1 0 2 2.09v.4V6a2 2 0 0 0-2-2Z\"/>"
},
"pause-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm1-14v8h2V8h-2ZM9 8v8h2V8H9Z\"/>"
},
"pause-circle-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22Zm-.016-2H12a8 8 0 1 0-.016 0ZM15 16h-2V8h2v8Zm-4 0H9V8h2v8Z\"/>"
},
"paypal": {
"body": "<path fill=\"currentColor\" d=\"M11.398 21.009H8.874a.392.392 0 0 1-.33-.15a.459.459 0 0 1-.09-.363c.04-.241.09-.559.152-.963l.114-.727a313.336 313.336 0 0 1 .348-2.188v-.02l.188-1.164l.1-.619v-.005c.072-.445.129-.798.17-1.061a.39.39 0 0 1 .433-.371h1.52a10.08 10.08 0 0 0 2.171-.212a6.09 6.09 0 0 0 2.886-1.449a6.084 6.084 0 0 0 1.56-2.473c.152-.436.27-.884.352-1.338c.007-.042.015-.066.025-.074a.03.03 0 0 1 .025-.012h.01a.31.31 0 0 1 .062.035c.525.397.876.982.98 1.632c.118.68.105 1.376-.04 2.051a5.406 5.406 0 0 1-1.857 3.35a6.053 6.053 0 0 1-3.825 1.116h-.439a.662.662 0 0 0-.444.166a.722.722 0 0 0-.239.427l-.04.194l-.554 3.478l-.02.151a.706.706 0 0 1-.249.427a.67.67 0 0 1-.445.162Zm-3.578-2H4.855a.473.473 0 0 1-.369-.165a.466.466 0 0 1-.115-.39l2.331-14.79a.775.775 0 0 1 .277-.483a.783.783 0 0 1 .518-.19h6.014c.33.013.658.057.98.131c.382.073.758.18 1.122.32a3.425 3.425 0 0 1 1.645 1.238a3.41 3.41 0 0 1 .568 1.972a7.11 7.11 0 0 1-.46 2.374a4.909 4.909 0 0 1-3.042 3.165a8.046 8.046 0 0 1-2.535.425c-.01.006-.44.007-.9.007l-.9-.007a1.083 1.083 0 0 0-1.187.964c-.013.054-.317 1.947-.855 5.329a.107.107 0 0 1-.128.105l.001-.005Z\"/>"
},
"phone": {
"body": "<path fill=\"currentColor\" d=\"M18.997 20C10.466 20.012 3.991 13.46 4 5.003C4 4.45 4.448 4 5 4h2.64c.495 0 .916.364.989.854a12.417 12.417 0 0 0 1.015 3.397l.103.222a.707.707 0 0 1-.23.872c-.818.584-1.13 1.759-.493 2.675a11.832 11.832 0 0 0 2.956 2.957c.917.636 2.092.324 2.675-.493a.707.707 0 0 1 .873-.231l.221.102c1.078.5 2.222.842 3.397 1.016c.49.073.854.494.854.99V19a1 1 0 0 1-1.001 1h-.002Z\"/>"
},
"phone-outline": {
"body": "<path fill=\"currentColor\" d=\"M8.742 8.682c-1.073.912-1.466 2.575-.54 3.909a12.818 12.818 0 0 0 3.208 3.207c1.334.926 2.997.533 3.909-.54l.01.005A13.38 13.38 0 0 0 19 16.36V19h-.004C11.022 19.011 4.991 12.911 5 5.004V5h2.64v.001c.188 1.27.558 2.506 1.097 3.67l.005.01ZM19 21h1a1 1 0 0 0 1-1v-4.502a1 1 0 0 0-.853-.99l-.854-.126a11.416 11.416 0 0 1-3.123-.934l-.753-.349a1 1 0 0 0-1.234.326l-.341.477c-.299.419-.87.546-1.291.253a10.819 10.819 0 0 1-2.706-2.705c-.293-.422-.165-.993.253-1.291l.477-.34a1 1 0 0 0 .326-1.235l-.35-.754a11.424 11.424 0 0 1-.933-3.123l-.127-.854A1 1 0 0 0 8.501 3H4a1 1 0 0 0-1 1v1.001C2.99 14.008 9.91 21.013 18.999 21Z\"/>"
},
"pie-chart-25": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22Zm-8-9.828A8 8 0 1 0 20 12h-8V4a8.01 8.01 0 0 0-8 8v.172Z\"/>"
},
"pie-chart-50": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-.016-2H12V4a8 8 0 1 0-.016 16Z\"/>"
},
"pie-chart-75": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22Zm0-18a8.008 8.008 0 0 0-8 8h8V4Z\"/>"
},
"pie-chart-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10ZM11 4.062a8 8 0 1 0 5.419 14.608l-.1.071l.094-.065l.059-.041l.064-.045l.016-.011l.009-.007l-5.128-5.13A1.51 1.51 0 0 1 11 12.379V4.062ZM13.829 13l4.227 4.227l.007-.008l.005-.006l-.01.011A7.944 7.944 0 0 0 19.938 13h-6.109ZM13 4.062V11h6.938A8 8 0 0 0 13 4.062Z\"/>"
},
"pie-chart-outline-25": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10ZM11 4.062a8 8 0 1 0 8.915 9.1V13H11V4.062Zm2 0V11h6.938A8 8 0 0 0 13 4.062Z\"/>"
},
"play-arrow": {
"body": "<path fill=\"currentColor\" d=\"m8 19l11-7L8 5v14Z\"/>"
},
"play-circle-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22ZM10 7.5v9l6-4.5l-6-4.5Z\"/>"
},
"play-circle-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-8-9.828A8 8 0 1 0 4 12v.172Zm6 4.328v-9l6 4.5l-6 4.5Z\"/>"
},
"play-store": {
"body": "<path fill=\"currentColor\" d=\"M5.4 21c-.17.003-.34-.026-.5-.086l8.054-8.057l2.666 2.669l-9.255 5.2A1.998 1.998 0 0 1 5.4 21Zm-1.164-.665a1.9 1.9 0 0 1-.236-.97V4.66a2.13 2.13 0 0 1 .1-.658l8.233 8.235l-8.1 8.1l.003-.002Zm12.179-5.258l-2.841-2.839l3.133-3.132l2.783 1.563c.534.24.892.755.928 1.339a1.574 1.574 0 0 1-.929 1.34l-3.074 1.729Zm-3.461-3.463l-8.34-8.339c.229-.17.506-.26.791-.261c.336.012.664.107.955.277l9.551 5.368l-2.956 2.955h-.001Z\"/>"
},
"plus": {
"body": "<path fill=\"currentColor\" d=\"M13 13v6h-2v-6H5v-2h6V5h2v6h6v2h-6Z\"/>"
},
"plus-circle": {
"body": "<path fill=\"currentColor\" d=\"M12 22c-5.52-.006-9.994-4.48-10-10v-.2C2.11 6.305 6.635 1.928 12.13 2c5.497.074 9.904 4.569 9.868 10.065C21.962 17.562 17.497 22 12 22ZM7 11v2h4v4h2v-4h4v-2h-4V7h-2v4H7Z\"/>"
},
"plus-circle-outline": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm-8-9.828A8 8 0 1 0 4 12v.172ZM13 17h-2v-4H7v-2h4V7h2v4h4v2h-4v4Z\"/>"
},
"plus-square": {
"body": "<path fill=\"currentColor\" d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2ZM5 5v14h14V5H5Zm8 12h-2v-4H7v-2h4V7h2v4h4v2h-4v4Z\"/>"
},
"qr-code": {
"body": "<path fill=\"currentColor\" d=\"M6 6h2v2H6V6Z\"/><path fill=\"currentColor\" d=\"M3 11V3h8v8H3Zm2-6v4h4V5H5Zm8 8h3v2h-3v-2Z\"/><path fill=\"currentColor\" d=\"M16 15h2v-2h3v3h-3v1h1v1h2v3h-2v-2h-2v2h-4v-4h2v2h1v-4Zm2-9h-2v2h2V6Z\"/><path fill=\"currentColor\" d=\"M13 3v8h8V3h-8Zm6 2v4h-4V5h4ZM6 16h2v2H6v-2Z\"/><path fill=\"currentColor\" d=\"M3 21v-8h8v8H3Zm2-6v4h4v-4H5Z\"/>"
},
"qr-code-1": {
"body": "<path fill=\"currentColor\" d=\"M3 11V3h8v8H3Zm3-5v2h2V6H6Zm7 5V3h8v8h-8Zm3-5v2h2V6h-2ZM3 13v8h8v-8H3Zm5 3v2H6v-2h2Zm8-3h-3v2h3v4h-1v-2h-2v4h4v-2h2v2h2v-3h-2v-1h-1v-1h3v-3h-3v2h-2v-2Z\"/>"
},
"radio": {
"body": "<path fill=\"currentColor\" d=\"M12 19a7 7 0 1 1 7-7a7.008 7.008 0 0 1-7 7Zm0-12a5 5 0 1 0 0 10a5 5 0 0 0 0-10Z\"/>"
},
"radio-filled": {
"body": "<path fill=\"currentColor\" d=\"M12 19a7 7 0 1 1 7-7a7.008 7.008 0 0 1-7 7Zm0-12a5 5 0 1 0 0 10a5 5 0 0 0 0-10Zm0 8a3 3 0 1 1 0-6a3 3 0 0 1 0 6Z\"/>"
},
"reddit": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10ZM6.807 10.543a1.46 1.46 0 0 0-.608 2.787a2.562 2.562 0 0 0 0 .439c0 2.24 2.615 4.062 5.829 4.062c3.214 0 5.83-1.822 5.83-4.062a2.773 2.773 0 0 0 0-.439a1.441 1.441 0 0 0-.648-2.737h-.053A1.456 1.456 0 0 0 16.2 11a7.116 7.116 0 0 0-3.85-1.23L13 6.65l2.138.45a1 1 0 0 0 1.102.886a1 1 0 0 0-.1-1.995a.847.847 0 0 0-.113.009a1 1 0 0 0-.759.492L12.82 6a.31.31 0 0 0-.366.237l-.748 3.473a7.123 7.123 0 0 0-3.9 1.229a1.45 1.45 0 0 0-.999-.396Zm5.373 5.981h-.338a3.852 3.852 0 0 1-2.3-.773a.269.269 0 0 1 .379-.38c.56.41 1.238.631 1.933.629h.324a3.268 3.268 0 0 0 1.912-.614a.28.28 0 0 1 .4 0a.284.284 0 0 1-.005.4v-.04a3.837 3.837 0 0 1-2.305.777v.001Zm2.127-2.444h-.016l.008-.039a.939.939 0 1 1 .736-.281a.988.988 0 0 1-.694.32h-.035h.001ZM9.67 14a1 1 0 1 1 0-2a1 1 0 0 1 0 2Z\"/>"
},
"redo": {
"body": "<path fill=\"currentColor\" d=\"M18.001 4h-2v2.557a7 7 0 1 0 1.037 10.011l-1.62-1.184A5 5 0 1 1 14.593 8h-2.59v2h6V4Z\"/>"
},
"refresh": {
"body": "<path fill=\"currentColor\" d=\"M11.995 4a8 8 0 1 0 7.735 10h-2.081a6 6 0 1 1-5.654-8a5.92 5.92 0 0 1 4.223 1.78L13 11h7V4l-2.351 2.35A7.965 7.965 0 0 0 11.995 4Z\"/>"
},
"refresh-02": {
"body": "<path fill=\"currentColor\" d=\"M4 20v-7h7l-3.217 3.22A5.917 5.917 0 0 0 12 18a6 6 0 0 0 5.648-4h.018c.114-.325.201-.66.259-1h2.012A8 8 0 0 1 12 20h-.01a7.941 7.941 0 0 1-5.653-2.34L4 20Zm2.074-9H4.062a8 8 0 0 1 7.933-7H12a7.94 7.94 0 0 1 5.654 2.34L20 4v7h-7l3.222-3.22A5.916 5.916 0 0 0 12 6a6 6 0 0 0-5.648 4h-.018c-.115.325-.202.66-.259 1h-.001Z\"/>"
},
"repeat": {
"body": "<path fill=\"currentColor\" d=\"m7 22l-4-4l4-4v3h10v-4h2v5a1 1 0 0 1-1 1H7v3Zm0-11H5V6a1 1 0 0 1 1-1h11V2l4 4l-4 4V7H7v4Z\"/>"
},
"sad": {
"body": "<path fill=\"currentColor\" d=\"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c-.006 5.52-4.48 9.994-10 10Zm0-18a8 8 0 1 0 8 8a8.009 8.009 0 0 0-8-8Zm-2 14c-.014 0-.14-.005-1-.005H8v-.066c0-.033 0-.078.007-.133a4.7 4.7 0 0 1 .472-1.743a3.6 3.6 0 0 1 1.23-1.414l.014-.009l.016-.012l.015-.008h.025l.011-.007A4.117 4.117 0 0 1 12 14a4.06 4.06 0 0 1 2.29.635c.527.355.951.843 1.23 1.414c.204.414.346.855.419 1.311c.032.188.046.339.052.432c0 .044.006.088.007.133v.062h-2v-.059c0-.055-.013-.14-.031-.246a2.698 2.698 0 0 0-.236-.747a1.638 1.638 0 0 0-.551-.645A2.11 2.11 0 0 0 12 16a2.11 2.11 0 0 0-1.18.3a1.647 1.647 0 0 0-.551.645a2.716 2.716 0 0 0-.266.993v.058H10V18Zm-1.5-6a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3Zm6.993-.014a1.493 1.493 0 1 1 0-2.986a1.493 1.493 0 0 1 0 2.986Z\"/>"
},
"search": {
"body": "<path fill=\"currentColor\" d=\"m18.677 19.607l-5.715-5.716a6 6 0 0 1-7.719-9.133a6 6 0 0 1 9.134 7.718l5.715 5.716l-1.414 1.414l-.001.001ZM9.485 5a4 4 0 1 0 2.917 1.264l.605.6l-.682-.68l-.012-.012A3.972 3.972 0 0 0 9.485 5Z\"/>"
},
"search-small": {
"body": "<path fill=\"currentColor\" d=\"m17.577 19l-4.767-4.766a5.035 5.035 0 0 1-6.336-7.76a5.035 5.035 0 0 1 7.761 6.335L19 17.577L17.577 19ZM10.034 7.014a3.02 3.02 0 1 0-.004 6.04a3.02 3.02 0 0 0 .004-6.04Z\"/>"
},
"search-small-minus": {
"body": "<path fill=\"currentColor\" d=\"m16.577 20l-5.767-5.766a5.035 5.035 0 0 1-6.336-7.76a5.035 5.035 0 0 1 7.761 6.335L18 18.576L16.577 20ZM8.034 7.014a3.02 3.02 0 1 0-.004 6.04a3.02 3.02 0 0 0 .004-6.04ZM21 9h-6V7h6v2Z\"/>"
},
"search-small-plus": {
"body": "<path fill=\"currentColor\" d=\"m16.577 20l-5.767-5.766a5.035 5.035 0 0 1-6.336-7.76a5.035 5.035 0 0 1 7.761 6.335L18 18.576L16.577 20ZM8.034 7.014a3.02 3.02 0 1 0-.004 6.04a3.02 3.02 0 0 0 .004-6.04ZM19 11h-2V9h-2V7h2V5h2v2h2v2h-2v2Z\"/>"
},
"select-multiple": {
"body": "<path fill=\"currentColor\" d=\"M16 22H4a2 2 0 0 1-2-2V8h2v12h12v2Zm4-4H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2ZM8 4v12h12V4H8Zm5 9.561L9.293 9.853l1.414-1.414L13 10.733l4.293-4.293l1.414 1.414L13 13.56v.001Z\"/>"
},
"settings": {
"body": "<path fill=\"currentColor\" d=\"M13.82 22h-3.64a1 1 0 0 1-.977-.786l-.407-1.884a8.002 8.002 0 0 1-1.535-.887l-1.837.585a1 1 0 0 1-1.17-.453L2.43 15.424a1.006 1.006 0 0 1 .193-1.239l1.425-1.3a8.1 8.1 0 0 1 0-1.772L2.623 9.816a1.006 1.006 0 0 1-.193-1.24l1.82-3.153a1 1 0 0 1 1.17-.453l1.837.585c.244-.18.498-.348.76-.5c.253-.142.513-.271.779-.386l.408-1.882A1 1 0 0 1 10.18 2h3.64a1 1 0 0 1 .976.787l.412 1.883a7.993 7.993 0 0 1 1.534.887l1.838-.585a1 1 0 0 1 1.169.453l1.82 3.153c.232.407.152.922-.193 1.239l-1.425 1.3a8.1 8.1 0 0 1 0 1.772l1.425 1.3c.345.318.425.832.193 1.239l-1.82 3.153a1 1 0 0 1-1.17.453l-1.837-.585a7.98 7.98 0 0 1-1.534.886l-.412 1.879a1 1 0 0 1-.976.786Zm-6.2-5.771l.82.6c.185.136.377.261.577.375c.188.109.38.207.579.296l.933.409l.457 2.091h2.03l.457-2.092l.933-.409c.407-.18.794-.403 1.153-.666l.82-.6l2.042.65l1.015-1.758l-1.583-1.443l.112-1.012c.05-.443.05-.89 0-1.332l-.112-1.012l1.584-1.446l-1.016-1.759l-2.041.65l-.821-.6a6.227 6.227 0 0 0-1.153-.671l-.933-.409L13.016 4h-2.03l-.46 2.092l-.93.408a6.01 6.01 0 0 0-1.153.666l-.821.6l-2.04-.65L4.565 8.88l1.583 1.441l-.112 1.013c-.05.443-.05.89 0 1.332l.112 1.012l-1.583 1.443l1.015 1.758l2.04-.65ZM11.996 16a4 4 0 1 1 0-8a4 4 0 0 1 0 8Zm0-6a2 2 0 1 0 2 2.09v.4V12a2 2 0 0 0-2-2Z\"/>"
},
"settings-filled": {
"body": "<path fill=\"currentColor\" d=\"M13.82 22h-3.64a1 1 0 0 1-.977-.786l-.407-1.884a8.002 8.002 0 0 1-1.535-.887l-1.837.585a1 1 0 0 1-1.17-.453L2.43 15.424a1.006 1.006 0 0 1 .193-1.239l1.425-1.3a8.1 8.1 0 0 1 0-1.772L2.623 9.816a1.006 1.006 0 0 1-.193-1.24l1.82-3.153a1 1 0 0 1 1.17-.453l1.837.585c.244-.18.498-.348.76-.5c.253-.142.513-.271.779-.386l.408-1.882A1 1 0 0 1 10.18 2h3.64a1 1 0 0 1 .976.787l.412 1.883a8.192 8.192 0 0 1 1.535.887l1.838-.585a1 1 0 0 1 1.169.453l1.82 3.153c.232.407.152.922-.193 1.239l-1.425 1.3a8.1 8.1 0 0 1 0 1.772l1.425 1.3c.345.318.425.832.193 1.239l-1.82 3.153a1 1 0 0 1-1.17.453l-1.837-.585a7.98 7.98 0 0 1-1.534.886l-.413 1.879a1 1 0 0 1-.976.786ZM11.996 8a4 4 0 1 0 0 8a4 4 0 0 0 0-8Z\"/>"
},
"settings-future": {
"body": "<path fill=\"currentColor\" d=\"m12 23l-9.5-5.5v-11L12 1l9.5 5.5v11L12 23Zm0-19.688L4.5 7.653v8.694l7.5 4.342l7.5-4.342V7.653L12 3.311v.001ZM12 16a4 4 0 1 1 2.828-1.172A4.027 4.027 0 0 1 12 16Zm0-6a2 2 0 1 0-.001 4A2 2 0 0 0 12 10Z\"/>"
},
"share": {
"body": "<path fill=\"currentColor\" d=\"M5.5 15a3.478 3.478 0 0 0 2.357-.93l6.26 3.577a3.52 3.52 0 1 0 1.026-1.717l-6.26-3.577c.066-.25.102-.509.108-.768l6.15-3.515A3.489 3.489 0 1 0 14 5.5c.004.288.043.575.117.853L8.433 9.6A3.5 3.5 0 1 0 5.5 15Z\"/>"
},
"share-outline": {
"body": "<path fill=\"currentColor\" d=\"M17.5 22a3.46 3.46 0 0 1-3.383-4.352l-6.26-3.578a3.494 3.494 0 1 1 .576-4.47l5.683-3.249A3.494 3.494 0 0 1 14 5.5a3.531 3.531 0 1 1 1.142 2.57l-6.15 3.515c-.007.26-.043.517-.109.768l6.26 3.577A3.495 3.495 0 1 1 17.5 22Zm0-5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Zm-12-7a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Zm12-6a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3Z\"/>"