-
Notifications
You must be signed in to change notification settings - Fork 64
/
proicons.json
1453 lines (1453 loc) · 204 KB
/
proicons.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": "proicons",
"info": {
"name": "ProIcons",
"total": 459,
"version": "4.11.1",
"author": {
"name": "ProCode",
"url": "https://github.com/ProCode-Software/proicons"
},
"license": {
"title": "MIT",
"spdx": "MIT",
"url": "https://github.com/ProCode-Software/proicons/blob/main/LICENSE"
},
"samples": [
"code",
"checkmark",
"photo-filter",
"soundwave",
"more",
"folder"
],
"height": 24,
"category": "UI 24px",
"palette": false
},
"lastModified": 1731395066,
"icons": {
"accessibility": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M6.867 5.543a1.58 1.58 0 0 0-2.155.576a1.57 1.57 0 0 0 .577 2.15l2.63 1.515a1 1 0 0 1 .5.866v3.536a1 1 0 0 1-.134.5l-2.408 4.162a1.57 1.57 0 0 0 .577 2.15a1.58 1.58 0 0 0 2.156-.576l3.258-5.629h.258l3.258 5.629a1.58 1.58 0 0 0 2.156.576a1.57 1.57 0 0 0 .577-2.15l-2.402-4.15a1 1 0 0 1-.135-.502V10.65a1 1 0 0 1 .501-.866l2.63-1.514a1.57 1.57 0 0 0 .577-2.15a1.58 1.58 0 0 0-2.155-.577l-3.636 2.094a3 3 0 0 1-2.994 0z\"/><path d=\"M14.623 5.414a2.623 2.623 0 1 1-5.246 0a2.623 2.623 0 0 1 5.246 0\"/></g>"
},
"add": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4 12h8m0 0h8m-8 0V4m0 8v8\"/>"
},
"add-circular": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path d=\"M12 8.5v7M8.5 12h7\"/></g>"
},
"add-rhombus": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.775 14.475a3.5 3.5 0 0 1 0-4.95l5.75-5.75a3.5 3.5 0 0 1 4.95 0l5.75 5.75a3.5 3.5 0 0 1 0 4.95l-5.75 5.75a3.5 3.5 0 0 1-4.95 0zM8.25 12H12m0 0h3.75M12 12V8.25M12 12v3.75\"/>"
},
"add-square": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12 8.5v7M8.5 12h7\"/><rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" rx=\"4\"/></g>"
},
"add-square-multiple": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M10.63 7.66v5.94m-2.97-2.97h5.94\"/><rect width=\"14\" height=\"14\" x=\"3.63\" y=\"3.63\" rx=\"3\"/><path d=\"M20.63 7.63v7a6 6 0 0 1-6 6h-7\"/></g>"
},
"airplane": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.238 4.512a1.762 1.762 0 1 1 3.524 0V8.9l6.733 3.535a1 1 0 0 1 .535.885v.431a.6.6 0 0 1-.712.59l-6.556-1.24v4.107a.6.6 0 0 0 .317.53l1.862.996a1.5 1.5 0 0 1 .792 1.322v.447a.6.6 0 0 1-.73.586L12 20.204l-4.003.885a.6.6 0 0 1-.73-.586v-.447a1.5 1.5 0 0 1 .792-1.322l1.862-.997a.6.6 0 0 0 .317-.529v-4.106L3.682 14.34a.6.6 0 0 1-.712-.59v-.43a1 1 0 0 1 .535-.886L10.238 8.9z\"/>"
},
"airplane-landing": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 20.75h18.5m-2.05-7.453a1.783 1.783 0 1 1-.923 3.445L8.185 14.04a4 4 0 0 1-1.32-.628l-2.14-1.543A3.04 3.04 0 0 1 3.47 9.271l.11-2.508a.607.607 0 0 1 .765-.56l.436.117a1.52 1.52 0 0 1 1.086 1.121l.486 2.082c.051.218.218.39.434.448l4.015 1.076l.506-6.735a.607.607 0 0 1 .763-.541l.422.113c.363.097.643.388.725.755l1.692 7.509z\"/>"
},
"airplane-takeoff": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 20.75h18.5M18.575 6.299a1.783 1.783 0 0 1 1.783 3.089L11.31 14.61a4 4 0 0 1-1.377.49l-2.604.422a3.04 3.04 0 0 1-2.725-.948L2.91 12.723a.607.607 0 0 1 .145-.936l.391-.226a1.52 1.52 0 0 1 1.56.025l1.816 1.128c.19.118.43.122.624.01l3.6-2.078l-4.404-5.12a.607.607 0 0 1 .156-.922l.378-.218c.326-.188.73-.18 1.047.02l6.506 4.113z\"/>"
},
"alert-circle": {
"body": "<g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 12.438v-5\"/><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(1 0 0 -1 10.75 17.063)\"/></g>"
},
"alert-triangle": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M5.732 20.5c-2.29 0-3.723-2.498-2.581-4.5L9.419 5.006c1.144-2.008 4.018-2.008 5.163 0L20.849 16c1.142 2.002-.291 4.5-2.581 4.5z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 13.375V9\"/><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(1 0 0 -1 10.75 17.938)\"/></g>"
},
"align-bottom": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M2.75 21.25h18.5\"/><rect width=\"6\" height=\"10\" rx=\"2\" transform=\"matrix(-1 0 0 1 19.75 7.75)\"/><rect width=\"6\" height=\"15\" rx=\"2\" transform=\"matrix(-1 0 0 1 10.25 2.75)\"/></g>"
},
"align-horizontal-centers": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M19.75 12h1.5m-11 0h3.5m-11 0h1.5\"/><rect width=\"6\" height=\"10\" rx=\"2\" transform=\"matrix(-1 0 0 1 19.75 7)\"/><rect width=\"6\" height=\"15\" rx=\"2\" transform=\"matrix(-1 0 0 1 10.25 4.5)\"/></g>"
},
"align-left": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M2.75 2.75v18.5\"/><rect width=\"6\" height=\"10\" rx=\"2\" transform=\"matrix(0 -1 -1 0 16.25 19.75)\"/><rect width=\"6\" height=\"15\" rx=\"2\" transform=\"matrix(0 -1 -1 0 21.25 10.25)\"/></g>"
},
"align-right": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M21.25 2.75v18.5\"/><rect width=\"6\" height=\"10\" x=\"7.75\" y=\"19.75\" rx=\"2\" transform=\"rotate(-90 7.75 19.75)\"/><rect width=\"6\" height=\"15\" x=\"2.75\" y=\"10.25\" rx=\"2\" transform=\"rotate(-90 2.75 10.25)\"/></g>"
},
"align-top": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M2.75 2.75h18.5\"/><rect width=\"6\" height=\"10\" x=\"19.75\" y=\"16.25\" rx=\"2\" transform=\"rotate(180 19.75 16.25)\"/><rect width=\"6\" height=\"15\" x=\"10.25\" y=\"21.25\" rx=\"2\" transform=\"rotate(180 10.25 21.25)\"/></g>"
},
"align-vertical-centers": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12 19.75v1.5m0-11v3.5m0-11v1.5\"/><rect width=\"6\" height=\"10\" x=\"7\" y=\"19.75\" rx=\"2\" transform=\"rotate(-90 7 19.75)\"/><rect width=\"6\" height=\"15\" x=\"4.5\" y=\"10.25\" rx=\"2\" transform=\"rotate(-90 4.5 10.25)\"/></g>"
},
"amazon": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.3\" d=\"M17.284 17.724h1.967c.543 0 .983.44.983.983v1.967\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6.901 7.111l1.976.2a.57.57 0 0 0 .558-.34c.268-.573.924-1.59 2.209-1.59c.258 0 .478.041.665.108c1.04.373 1.02 1.77 1.02 2.874c0 0-2.415-.058-3.992.476c-.465.157-.934.333-1.36.578c-1.223.705-1.77 2.276-1.969 3.022c-.071.27-.098.549-.08.828c.08 1.178.558 3.184 2.968 3.599c2.247.386 3.749-.64 4.43-1.267c.23-.213.612-.22.817.018l.88 1.017a.59.59 0 0 0 .825.066l1.676-1.402a.59.59 0 0 0 .101-.796l-.267-.374c-.215-.3-.422-.613-.517-.97c-.099-.372-.09-.763-.09-1.148V6.704c0-2.372-2.295-3.681-3.94-3.85l-.592-.057a6 6 0 0 0-.972-.034a6 6 0 0 0-1.162.196c-1.537.399-3.348 1.765-3.597 3.664c-.033.25.162.463.413.488m6.428 4.576v-1.432s-1.905-.047-2.664.363c-.312.168-.574.491-.775.813a2.54 2.54 0 0 0-.291 1.94c.066.275.158.54.282.695c.259.323.876.439 1.166.476q.156.022.311.003c.157-.022.413-.08.67-.23c.39-.229.695-.595.903-.995c.118-.226.208-.471.273-.676a3.2 3.2 0 0 0 .125-.957\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M4.5 18.707c1.933 1.619 4.584 2.548 7.375 2.548c1.853 0 3.643-.41 5.203-1.158a11 11 0 0 0 .573-.295\"/></g>"
},
"anchor": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M2.75 12a9.25 9.25 0 1 0 18.5 0M12 21.25V7.75\"/><circle cx=\"12\" cy=\"5.25\" r=\"2.5\"/><path stroke-linecap=\"round\" d=\"M2.75 12h4m10.5 0h4\"/></g>"
},
"android": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.764 9.907a9.3 9.3 0 0 1 1.777 1.46a9.8 9.8 0 0 1 2.005 3.158c.343.873.564 1.791.655 2.727c.054.55-.399.998-.951.998H3.75c-.552 0-1.005-.449-.951-.998c.091-.936.312-1.854.655-2.727a9.8 9.8 0 0 1 2.005-3.157a9.3 9.3 0 0 1 1.777-1.461m9.528 0a9 9 0 0 0-1.224-.65a8.85 8.85 0 0 0-3.54-.74a8.85 8.85 0 0 0-3.54.74a9 9 0 0 0-1.224.65m9.528 0L18.49 6.75M7.236 9.907L5.51 6.75\"/><circle cx=\"8.75\" cy=\"14.063\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"15.25\" cy=\"14.063\" r=\"1.25\" fill=\"currentColor\"/></g>"
},
"angle": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M4.25 4.25v12.5a3 3 0 0 0 3 3h12.5\"/><path d=\"M4.25 10.356h.394a9 9 0 0 1 9 9v.394\"/></g>"
},
"app-remove": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"6.5\" height=\"6.5\" rx=\"2\" transform=\"matrix(1 0 0 -1 3.75 20.25)\"/><path d=\"M20.25 20.25L17 17m0 0l-3.25-3.25M17 17l-3.25 3.25M17 17l3.25-3.25\"/><rect width=\"6.5\" height=\"6.5\" rx=\"2\" transform=\"matrix(1 0 0 -1 3.75 10.25)\"/><rect width=\"6.5\" height=\"6.5\" rx=\"2\" transform=\"matrix(1 0 0 -1 13.75 10.25)\"/></g>"
},
"app-store": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M10.904 13.794h2.024l-1.012-1.755z\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m8.843 17.367l-1.58 2.74A1.784 1.784 0 1 1 4.17 18.32l.55-.953m4.122 0H4.72m4.122 0h6.146m-10.268 0h-.466a1.786 1.786 0 0 1 0-3.573h2.527l3.073-5.327l-1.03-1.787a1.784 1.784 0 1 1 3.092-1.786a1.784 1.784 0 1 1 3.09 1.786l-1.03 1.786m-1.049 5.328h-2.024l1.012-1.755m1.012 1.755l2.061 3.573m-2.06-3.573l-1.013-1.755m3.073 5.328l1.58 2.74a1.784 1.784 0 1 0 3.092-1.787l-.55-.953h.634a1.786 1.786 0 0 0 0-3.573H17.05l-3.073-5.328m0 0l-2.06 3.573\"/></g>"
},
"apple": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\"><path stroke-width=\"1.5\" d=\"M10.102 7.78a4 4 0 0 0-1.185-.161c-1.918 0-4.167 1.695-4.167 5.359c0 3.36 2.358 7.21 3.801 7.822c.328.14.731.227 1.084.193c.707-.07 1.348-.421 2.023-.622c.228-.038.5-.074.719-.075c.24-.002.51.06.774.12c.715.164 1.505.65 2.255.577c.267-.026.633-.187.746-.239l.07-.03c.85-.343 1.988-1.826 2.759-3.703c.162-.396-.052-.833-.404-1.077c-.999-.694-1.663-1.934-1.663-3.195c0-.969.313-1.854.907-2.523l.02-.023a8 8 0 0 1 .45-.5c.255-.248.326-.645.082-.904c-.808-.854-1.832-1.277-2.764-1.277a3.6 3.6 0 0 0-1.106.156c-.138.033-.778.192-1.222.355c-.257.071-.635.167-.81.21a.7.7 0 0 1-.192.023c-.735-.024-1.47-.303-2.177-.487Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M13.86 5.178c-.733.878-1.975 1.047-1.975 1.047s-.05-1.256.684-2.135s1.976-1.046 1.976-1.046s.05 1.256-.684 2.134Z\"/></g>"
},
"apps": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"6.5\" height=\"6.5\" x=\"3.75\" y=\"3.75\" rx=\"2\"/><path d=\"M15.586 3.818a2 2 0 0 1 2.828 0l1.768 1.768a2 2 0 0 1 0 2.828l-1.768 1.768a2 2 0 0 1-2.828 0l-1.768-1.768a2 2 0 0 1 0-2.828z\"/><rect width=\"6.5\" height=\"6.5\" x=\"3.75\" y=\"13.75\" rx=\"1.5\"/><rect width=\"6.5\" height=\"6.5\" x=\"13.75\" y=\"13.75\" rx=\"2\"/></g>"
},
"apps-add": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"6.5\" height=\"6.5\" x=\"3.75\" y=\"3.75\" rx=\"2\"/><path d=\"M17 3.75V7m0 0v3.25M17 7h-3.25M17 7h3.25\"/><rect width=\"6.5\" height=\"6.5\" x=\"3.75\" y=\"13.75\" rx=\"2\"/><rect width=\"6.5\" height=\"6.5\" x=\"13.75\" y=\"13.75\" rx=\"2\"/></g>"
},
"apps-list": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M10.25 4.5h11\"/><rect width=\"3.5\" height=\"3.5\" x=\"2.75\" y=\"2.75\" rx=\"1.2\"/><path d=\"M10.25 12h11\"/><rect width=\"3.5\" height=\"3.5\" x=\"2.75\" y=\"10.25\" rx=\"1.2\"/><path d=\"M10.25 19.5h11\"/><rect width=\"3.5\" height=\"3.5\" x=\"2.75\" y=\"17.75\" rx=\"1.2\"/></g>"
},
"arc": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.25 4.75h-.5c-7.732 0-14 6.268-14 14v.5\"/>"
},
"archive": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.25 12.5h3.5m-10-4.75a4 4 0 0 1 4-4h8.5a4 4 0 0 1 4 4v8.5a4 4 0 0 1-4 4h-8.5a4 4 0 0 1-4-4zm0 1h16.5\"/>"
},
"archive-add-2": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.25 12.25h2m-8.5-4h16.5m0 2v-1.7c0-1.68 0-2.52-.327-3.162a3 3 0 0 0-1.311-1.311c-.642-.327-1.482-.327-3.162-.327h-6.9c-1.68 0-2.52 0-3.162.327a3 3 0 0 0-1.311 1.311C3.75 6.03 3.75 6.87 3.75 8.55v6.9c0 1.68 0 2.52.327 3.162a3 3 0 0 0 1.311 1.311c.642.327 1.482.327 3.162.327h1.7\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H18v2.493a.5.5 0 1 1-1 0V18h-2.493a.5.5 0 1 1 0-1H17v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/></g>"
},
"arrow-clockwise": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.719 14.385a8.25 8.25 0 1 1-.824-6.26l.42.908m.58-4.658v3.75a1 1 0 0 1-.58.908m-4.17.092h3.75c.15 0 .293-.033.42-.092\"/>"
},
"arrow-counterclockwise": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.281 14.385a8.25 8.25 0 1 0 .824-6.26l-.477.88m-.523-4.63v3.75a1 1 0 0 0 .523.88m4.227.12h-3.75a1 1 0 0 1-.477-.12\"/>"
},
"arrow-down": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 4v15.879M5.25 13.75l5.69 5.69c.292.292.676.439 1.06.439m6.75-6.129l-5.69 5.69a1.5 1.5 0 0 1-1.06.439\"/>"
},
"arrow-download": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12.074 3.25v12.478M6.19 10.465l4.822 4.822c.293.293.677.44 1.06.44m5.883-5.262l-4.822 4.822c-.293.293-.677.44-1.06.44m8.677.788v.935a3.3 3.3 0 0 1-3.3 3.3H6.55a3.3 3.3 0 0 1-3.3-3.3v-.935\"/>"
},
"arrow-enter": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.75 5.623V9.52a4 4 0 0 1-4 4H3.871m4.236 4.857L4.31 14.58a1.5 1.5 0 0 1-.44-1.061m4.236-4.857L4.31 12.46c-.293.293-.44.677-.44 1.061\"/>"
},
"arrow-export": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.798 12H2.871m5.157-5.778l-4.717 4.717c-.293.293-.44.677-.44 1.061m5.157 5.778l-4.717-4.717A1.5 1.5 0 0 1 2.87 12m17.88-7.905v15.81\"/>"
},
"arrow-foward": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.25 18.219c0-2.352 0-3.527.383-4.455a5.06 5.06 0 0 1 2.743-2.743c.928-.383 2.103-.383 4.455-.383h8.298m-4.236-4.857l3.796 3.796c.293.293.44.677.44 1.061m-4.236 4.857l3.796-3.796c.293-.293.44-.677.44-1.061\"/>"
},
"arrow-import": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.25 12h12.927M10.02 6.222l4.717 4.717c.293.293.44.677.44 1.061m-5.157 5.778l4.717-4.717c.293-.293.44-.677.44-1.061m5.573-7.905v15.81\"/>"
},
"arrow-left": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M20 12H4.121m6.129 6.75l-5.69-5.69A1.5 1.5 0 0 1 4.122 12m6.129-6.75l-5.69 5.69A1.5 1.5 0 0 0 4.122 12\"/>"
},
"arrow-left-right": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m16.25 17l3.94-3.94c.292-.292.439-.676.439-1.06M16.25 7l3.94 3.94c.292.292.439.676.439 1.06M7.75 17l-3.94-3.94A1.5 1.5 0 0 1 3.372 12M7.75 7l-3.94 3.94A1.5 1.5 0 0 0 3.371 12m0 0H20.63\"/>"
},
"arrow-maximize": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.75 12.75v6c0 .414.168.79.44 1.06m7.06.44h-6a1.5 1.5 0 0 1-1.06-.44m16.06-8.56v-6c0-.414-.168-.79-.44-1.06m-7.06-.44h6c.414 0 .79.168 1.06.44M4.19 19.81l.56-.56l14.5-14.5l.56-.56\"/>"
},
"arrow-minimize": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m2.75 21.25l6.5-6.5l.56-.56m.44 7.06v-6c0-.414-.168-.79-.44-1.06m-7.06-.44h6c.414 0 .79.168 1.06.44m3.94-11.44v6c0 .414.168.79.44 1.06m7.06.44h-6a1.5 1.5 0 0 1-1.06-.44m7.06-7.06l-6.5 6.5l-.56.56\"/>"
},
"arrow-move": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 9.005V2.75M9 5.324l2.273-2.273c.201-.2.464-.301.727-.301m3 2.574l-2.273-2.273c-.2-.2-.464-.301-.727-.301M14.995 12h6.255m-2.574-3l2.273 2.273c.2.201.301.464.301.727m-2.574 3l2.273-2.273c.2-.2.301-.464.301-.727M12 14.995v6.255m-3-2.574l2.273 2.273c.201.2.464.301.727.301m3-2.574l-2.273 2.273c-.2.2-.464.301-.727.301M9.005 12H2.75m2.574-3l-2.273 2.273c-.2.201-.301.464-.301.727m2.574 3l-2.273-2.273c-.2-.2-.301-.464-.301-.727\"/>"
},
"arrow-redo": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m14.03 21.25l-8.26-8.26a5.999 5.999 0 0 1 8.483-8.483l4.734 4.734l.622.622m-7.199.505h6.077c.447 0 .848-.195 1.122-.505m.378-7.072v6.077c0 .382-.142.73-.378.995\"/>"
},
"arrow-redo-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m14.75 12l3.293-3.293A1 1 0 0 0 18.336 8M14.75 4l3.293 3.293a1 1 0 0 1 .293.707M16.75 19.5H10.5a5.75 5.75 0 0 1 0-11.5h7.836\"/>"
},
"arrow-reply": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.75 18.219c0-2.352 0-3.527-.383-4.455a5.06 5.06 0 0 0-2.743-2.743c-.928-.383-2.103-.383-4.455-.383H3.871m4.236-4.857L4.31 9.577c-.293.293-.44.677-.44 1.061m4.236 4.857L4.31 11.699a1.5 1.5 0 0 1-.44-1.061\"/>"
},
"arrow-right": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4 12h15.879m-6.129 6.75l5.69-5.69c.292-.292.439-.676.439-1.06M13.75 5.25l5.69 5.69c.292.292.439.676.439 1.06\"/>"
},
"arrow-rotate-clockwise": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3.75 12a8.25 8.25 0 1 1 12.375 7.145l-1.199.421m-.051-3.316v3q0 .166.051.316m3.949.684h-3a1 1 0 0 1-.949-.684\"/><path d=\"M14.5 11.75a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0Z\"/></g>"
},
"arrow-rotate-counterclockwise": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M20.25 12a8.25 8.25 0 1 0-12.375 7.145l1.168.503m.082-3.398v3q-.002.213-.082.398m-3.918.602h3a1 1 0 0 0 .918-.602\"/><path d=\"M14.5 11.75a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0Z\"/></g>"
},
"arrow-sort": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 9.867L8.186 6.053a1.5 1.5 0 0 0-1.061-.44M2.25 9.868l3.814-3.814c.293-.293.677-.44 1.061-.44m0 13.395V5.614m9.75-.124v13.394m4.875-4.253l-3.814 3.814c-.293.293-.677.44-1.061.44M12 14.63l3.814 3.814c.293.293.677.44 1.061.44\"/>"
},
"arrow-swap": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m9.618 12.249l-3.814 3.814c-.293.293-.44.677-.44 1.06M9.619 22l-3.814-3.814a1.5 1.5 0 0 1-.44-1.061m13.395 0H5.365m-.124-9.751h13.394m-4.253-4.875l3.814 3.814c.293.293.44.677.44 1.06m-4.254 4.876l3.814-3.814c.293-.293.44-.677.44-1.061\"/>"
},
"arrow-sync": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.548 9.735a8.75 8.75 0 0 1 16.03-2.11l.335.759m.837-5.134v4.147a1 1 0 0 1-.837.987m-4.31.013h4.147q.083 0 .163-.013M3.25 20.75v-4.147a1 1 0 0 1 1-1m0 0h4.147m-4.147 0l.172.772a8.75 8.75 0 0 0 16.03-2.11\"/>"
},
"arrow-sync-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.915 18.532A7.83 7.83 0 0 1 11.831 3.92h1.043m-1.755-2.17l1.462 1.462a1 1 0 0 1 .293.708m-1.755 2.169l1.462-1.462a1 1 0 0 0 .293-.707m3.211 1.299a7.83 7.83 0 0 1-3.916 14.612h-1.043M12.881 22l-1.462-1.462a1 1 0 0 1-.293-.707m1.755-2.17l-1.462 1.462a1 1 0 0 0-.293.708\"/>"
},
"arrow-trending": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m3.25 16.75l4.793-4.793a1 1 0 0 1 1.414 0l2.586 2.586a1 1 0 0 0 1.414 0L19.75 8.25l.56-.56m-5.56-.44h4.5c.414 0 .79.168 1.06.44m.44 5.56v-4.5c0-.414-.168-.79-.44-1.06\"/>"
},
"arrow-undo": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m9.97 21.25l8.26-8.26a5.999 5.999 0 0 0-8.483-8.483L5.013 9.24l-.622.622m7.199.505H5.513c-.447 0-.848-.195-1.122-.505M4.013 2.79v6.077c0 .382.143.73.378.995\"/>"
},
"arrow-undo-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.25 12L5.957 8.707A1 1 0 0 1 5.664 8M9.25 4L5.957 7.293A1 1 0 0 0 5.664 8M7.25 19.5h6.25a5.75 5.75 0 0 0 0-11.5H5.664\"/>"
},
"arrow-up": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 20V4.121M5.25 10.25l5.69-5.69A1.5 1.5 0 0 1 12 4.121m6.75 6.129l-5.69-5.69A1.5 1.5 0 0 0 12 4.122\"/>"
},
"arrow-up-down": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m7 16.25l3.94 3.94c.292.292.676.439 1.06.439m5-4.379l-3.94 3.94a1.5 1.5 0 0 1-1.06.439M7 7.75l3.94-3.94A1.5 1.5 0 0 1 12 3.371m5 4.379l-3.94-3.94A1.5 1.5 0 0 0 12 3.372m0 0V20.63\"/>"
},
"arrow-upload": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 16.349V3.87M6.118 9.132l4.821-4.821c.293-.293.677-.44 1.061-.44m5.882 5.261l-4.821-4.821A1.5 1.5 0 0 0 12 3.87m8.75 12.645v.935a3.3 3.3 0 0 1-3.3 3.3H6.55a3.3 3.3 0 0 1-3.3-3.3v-.935\"/>"
},
"attatch": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m2.861 13.625l9.342-9.342a5.235 5.235 0 1 1 7.403 7.403L10.88 20.41a2.867 2.867 0 0 1-4.054-4.054l8.372-8.373\"/>"
},
"background-color": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M13.04 4.75h3.66c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311c.327.642.327 1.482.327 3.162v5.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311c-.642.327-1.482.327-3.162.327H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 17.47 3 16.63 3 14.95v-.93\"/><path d=\"m6.407 2.818l5.384 5.385M6.407 2.818L3.01 6.214c-.696.696-1.044 1.044-1.174 1.446c-.057.176-.086.36-.086.543m4.657-5.385L5.589 2m6.202 6.203l-3.396 3.396c-.696.696-1.044 1.044-1.445 1.174a1.76 1.76 0 0 1-1.086 0c-.401-.13-.75-.478-1.445-1.174L3.01 10.191c-.696-.696-1.044-1.044-1.174-1.445a1.8 1.8 0 0 1-.086-.543m10.042 0H1.75m10.672 4.094l1.485-2.448l1.744 2.313a1.824 1.824 0 0 1-.668 2.491c-1.546.893-3.322-.74-2.562-2.356\"/></g>"
},
"background-color-accent": {
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3 14.95v-1.68h.633c.168.163.33.33.486.462c.307.261.696.54 1.204.706a3.5 3.5 0 0 0 2.168 0c.507-.165.896-.445 1.203-.706c.28-.236.583-.54.895-.852l1.185-1.186c-1.322 3.12 2.099 6.198 5.084 4.475a3.574 3.574 0 0 0 1.308-4.882a2 2 0 0 0-.118-.179l-1.744-2.313a1.75 1.75 0 0 0-1.764-.657a1.75 1.75 0 0 0-.511-1.173l-.739-.716V4.75h4.41c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311c.327.642.327 1.482.327 3.162v5.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311c-.642.327-1.482.327-3.162.327H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 17.47 3 16.63 3 14.95\" clip-rule=\"evenodd\"/>"
},
"backspace": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M6.71 6.084a3.5 3.5 0 0 1 2.572-1.126h7.968a3.5 3.5 0 0 1 3.5 3.5v7.084a3.5 3.5 0 0 1-3.5 3.5H9.282a3.5 3.5 0 0 1-2.571-1.126l-3.27-3.542a3.5 3.5 0 0 1 0-4.748zm4.11 3.281l5.271 5.27m0-5.27l-5.27 5.27\"/>"
},
"badge": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12 3.75H8.75a5 5 0 0 0-5 5v6.5a5 5 0 0 0 5 5h6.5a5 5 0 0 0 5-5V12\"/><circle cx=\"18.25\" cy=\"5.75\" r=\"3\"/></g>"
},
"bar-graph": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M2.75 21h18.5\"/><rect width=\"6\" height=\"10\" x=\"4\" y=\"7.5\" rx=\"2\"/><rect width=\"6\" height=\"15\" x=\"14\" y=\"2.5\" rx=\"2\"/></g>"
},
"battery": {
"body": "<g fill=\"none\"><rect width=\"16\" height=\"12\" x=\"2.75\" y=\"6\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"3.25\"/><rect width=\"7\" height=\"7\" x=\"5.25\" y=\"8.5\" fill=\"currentColor\" rx=\"1.5\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 10v4\"/></g>"
},
"battery-full": {
"body": "<g fill=\"none\"><rect width=\"16\" height=\"12\" x=\"2.75\" y=\"6\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"3.25\"/><rect width=\"11\" height=\"7\" x=\"5.25\" y=\"8.5\" fill=\"currentColor\" rx=\"1.5\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 10v4\"/></g>"
},
"beach": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M17.135 4.027c1.969 1.137 3.369 3.074 3.89 5.386a9.4 9.4 0 0 1 .005 4.066c-.361 1.67-2.311 2.182-3.791 1.328l-9.492-5.48c-1.48-.855-2.012-2.8-.746-3.948a9.4 9.4 0 0 1 3.523-2.03c2.263-.703 4.641-.46 6.61.678m0 0c-1.368-.79-4.554 2.17-7.118 6.61m7.118-6.61c1.367.789.397 5.028-2.167 9.469m-2.475-1.43l-3.61 6.254m7.027 2.725a9.306 9.306 0 0 0-13.159 0\"/>"
},
"beaker": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.456 3.75v5.09a3 3 0 0 1-.557 1.742l-1.736 2.436M9.456 3.75h-1.65m1.65 0h5.088m0 0v5.09a3 3 0 0 0 .557 1.742l1.736 2.436M14.544 3.75h1.65m-9.031 9.268l-2.378 3.337a2.465 2.465 0 0 0 2.007 3.895h10.416a2.465 2.465 0 0 0 2.007-3.895l-2.378-3.337m-9.674 0h9.674\"/>"
},
"bell": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path stroke-linejoin=\"round\" d=\"M18.934 14.98a3 3 0 0 1-.457-1.59V9.226a6.477 6.477 0 0 0-12.954 0v4.162a3 3 0 0 1-.457 1.592l-1.088 1.74a1 1 0 0 0 .848 1.53h14.348a1 1 0 0 0 .848-1.53z\"/><path d=\"M10 21.25h4\"/></g>"
},
"bell-dot": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M18.477 9.75v3.64a3 3 0 0 0 .456 1.59l1.09 1.74a1 1 0 0 1-.849 1.53H4.826a1 1 0 0 1-.848-1.53l1.088-1.74a3 3 0 0 0 .457-1.59V9.226A6.477 6.477 0 0 1 14.52 3.26\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M10 21.25h4\"/><circle cx=\"18.5\" cy=\"5.5\" r=\"2.5\" fill=\"currentColor\"/></g>"
},
"bell-off": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M10 21.25h4\"/><path stroke-linejoin=\"round\" d=\"M17.188 18.25H4.826a1 1 0 0 1-.848-1.53l1.089-1.74a3 3 0 0 0 .457-1.59V9.226c0-.788.14-1.543.398-2.242M7.62 4.458l.06-.055a6.477 6.477 0 0 1 10.798 4.825v4.161a3 3 0 0 0 .457 1.592l1.088 1.74q.068.106.104.219\"/><path stroke-linejoin=\"round\" d=\"m20.719 21.782l-3.531-3.531L5.922 6.985L2.218 3.282\"/></g>"
},
"bluetooth": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m6.25 7.5l5.454 4.5m0 0l5.246 3.982a.65.65 0 0 1 0 1.036l-4.202 3.19a.65.65 0 0 1-1.043-.517V4.31a.65.65 0 0 1 1.043-.518l4.202 3.19a.65.65 0 0 1 0 1.036zm0 0L6.25 16.5\"/>"
},
"board": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M17.75 4H6.25a3.5 3.5 0 0 0-3.5 3.5v9a3.5 3.5 0 0 0 3.5 3.5h11.5a3.5 3.5 0 0 0 3.5-3.5v-9a3.5 3.5 0 0 0-3.5-3.5\"/><path fill=\"currentColor\" d=\"M17.1 6.95H6.9a1.2 1.2 0 0 0-1.2 1.2v.483a1.2 1.2 0 0 0 1.2 1.2h10.2a1.2 1.2 0 0 0 1.2-1.2V8.15a1.2 1.2 0 0 0-1.2-1.2m0 5.64h-2.9a1.2 1.2 0 0 0-1.2 1.2v2.06a1.2 1.2 0 0 0 1.2 1.2h2.9a1.2 1.2 0 0 0 1.2-1.2v-2.06a1.2 1.2 0 0 0-1.2-1.2m-8.1 0H6.9a1.2 1.2 0 0 0-1.2 1.2v2.06a1.2 1.2 0 0 0 1.2 1.2H9a1.2 1.2 0 0 0 1.2-1.2v-2.06a1.2 1.2 0 0 0-1.2-1.2\"/></g>"
},
"bolt": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.896 11.457c.64 0 .924.804.426 1.206l-10.45 8.434c-.505.407-1.238-.057-1.086-.687l1.615-6.696H4.104a.678.678 0 0 1-.455-1.182l10.63-9.604c.489-.442 1.257.002 1.118.646l-1.698 7.883z\"/>"
},
"book": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M4.5 16.625v-10.5a3 3 0 0 1 3-3h11a1 1 0 0 1 1 1v12.5H7.375M4.5 16.62V19\"/><path d=\"M18.5 21.625H7a2.5 2.5 0 0 1 0-5h12.5v4a1 1 0 0 1-1 1\"/></g>"
},
"book-2": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M4.5 4.749a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v13h-15zm0 13v1.503a2 2 0 0 0 2 2h13\"/><rect width=\"8\" height=\"3\" x=\"8\" y=\"6.25\" rx=\".6\"/></g>"
},
"book-add": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H18v2.493a.5.5 0 1 1-1 0V18h-2.493a.5.5 0 1 1 0-1H17v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 19.125a2.5 2.5 0 0 0 2.5 2.5h4.61m-7.11-2.5a2.5 2.5 0 0 1 2.5-2.5h3.32m-5.82 2.5v-13a3 3 0 0 1 3-3h11a1 1 0 0 1 1 1v6.495\"/></g>"
},
"book-add-2": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 18.749v-12.8c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h8.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.427.218.987.218 2.108v4.301m-15 8.499c0 .467 0 .7.039.895a2 2 0 0 0 1.568 1.569c.195.039.429.039.896.039h3.247M4.5 18.749h4.75M8.96 9.25h6.08c.336 0 .504 0 .632-.065a.6.6 0 0 0 .263-.263C16 8.794 16 8.626 16 8.29V7.21c0-.336 0-.504-.065-.632a.6.6 0 0 0-.263-.263c-.128-.065-.296-.065-.632-.065H8.96c-.336 0-.504 0-.632.065a.6.6 0 0 0-.263.263C8 6.706 8 6.874 8 7.21v1.08c0 .336 0 .504.065.632a.6.6 0 0 0 .263.263c.128.065.296.065.632.065\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H18v2.493a.5.5 0 1 1-1 0V18h-2.493a.5.5 0 1 1 0-1H17v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/></g>"
},
"book-info": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 16.625v-10.5a3 3 0 0 1 3-3h11a1 1 0 0 1 1 1v12.5H7.375M4.5 16.62V19\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M18.5 21.625H7a2.5 2.5 0 0 1 0-5h12.5v4a1 1 0 0 1-1 1\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 9.825v3.79\"/><circle cx=\"12\" cy=\"6.592\" r=\"1.197\" fill=\"currentColor\"/></g>"
},
"book-info-2": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 4.749a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v13h-15z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 10.07v4.79\"/><circle cx=\"12\" cy=\"6.837\" r=\"1.197\" fill=\"currentColor\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 17.749v1.503a2 2 0 0 0 2 2h13\"/></g>"
},
"book-open": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 7.21a2 2 0 0 1 2-2H8.5a3.5 3.5 0 0 1 3.5 3.5v10.885l-1.015-.721a4 4 0 0 0-2.318-.74H4.75a2 2 0 0 1-2-2zm18.5 0a2 2 0 0 0-2-2H15.5a3.5 3.5 0 0 0-3.5 3.5v10.885l1.015-.721a4 4 0 0 1 2.317-.74h3.918a2 2 0 0 0 2-2z\"/>"
},
"bookmark": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.75 20.113c0 .498.554.803.983.54l5.702-3.48a1.09 1.09 0 0 1 1.13 0l5.702 3.48a.644.644 0 0 0 .983-.54V6.25a3 3 0 0 0-3-3h-8.5a3 3 0 0 0-3 3z\"/>"
},
"bookmark-add": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 12a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V6h2.493a.5.5 0 1 1 0 1H18v2.493a.5.5 0 0 1-1 0V7h-2.493a.5.5 0 1 1 0-1H17V3.507a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.25 13.5v6.613a.644.644 0 0 1-.983.54l-5.702-3.48a1.09 1.09 0 0 0-1.13 0l-5.702 3.48a.644.644 0 0 1-.983-.54V6.25a3 3 0 0 1 3-3h3.31\"/></g>"
},
"bookmark-multiple": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.75 20.654a.6.6 0 0 0 .916.51l5.308-3.282a1 1 0 0 1 1.052 0l5.308 3.282a.6.6 0 0 0 .916-.51V8.75a3 3 0 0 0-3-3h-7.5a3 3 0 0 0-3 3z\"/><path stroke-linecap=\"round\" d=\"M20.25 17.65v-8.9a6 6 0 0 0-6-6h-6.5\"/></g>"
},
"bookmark-multiple-var": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M4.421 8.45v11.884c0 .763.88 1.19 1.48.718l4.883-3.843a.914.914 0 0 1 1.13 0l4.884 3.843a.914.914 0 0 0 1.48-.718V8.45a3.2 3.2 0 0 0-3.2-3.2H7.621a3.2 3.2 0 0 0-3.2 3.2Z\"/><path stroke-linecap=\"round\" d=\"M21.278 16.334V8.25a6 6 0 0 0-6-6H8.421\"/></g>",
"hidden": true
},
"border-all": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 20.25h4.25a4 4 0 0 0 4-4V12M12 20.25H7.75a4 4 0 0 1-4-4V12M12 20.25V3.75m0 0H7.75a4 4 0 0 0-4 4V12M12 3.75h4.25a4 4 0 0 1 4 4V12m-16.5 0h16.5\"/>"
},
"box": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m7.687 9.687l2.66 1.426A3.5 3.5 0 0 0 12 11.53M7.687 9.687L3.884 7.65m3.803 2.038l8.496-4.555l.128-.07M3.884 7.648a3.5 3.5 0 0 0-.51 1.82v5.061a3.5 3.5 0 0 0 1.845 3.085l5.127 2.748A3.5 3.5 0 0 0 12 20.78M3.884 7.649a3.5 3.5 0 0 1 1.335-1.264l5.127-2.748a3.5 3.5 0 0 1 3.308 0L16.31 5.06M12 11.53a3.5 3.5 0 0 0 1.654-.416l6.462-3.464M12 11.529v9.25m0 0a3.5 3.5 0 0 0 1.654-.416l5.127-2.748a3.5 3.5 0 0 0 1.846-3.085V9.47a3.5 3.5 0 0 0-.511-1.821m0 0a3.5 3.5 0 0 0-1.335-1.264l-2.47-1.324\"/>"
},
"box-drag": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12.073 17.533v-3.864m2.544-2.937c0-.699-.57-1.265-1.272-1.265s-1.272.566-1.272 1.265v2.937m2.544-.444v-4.21c0-.698.57-1.265 1.272-1.265s1.272.567 1.272 1.266v1.716m0 0v2.493m0-2.493a1.273 1.273 0 0 1 2.545 0v1.717m0 0v.776m0-.776c0-.7.57-1.266 1.272-1.266s1.272.567 1.272 1.266V17.1a5.15 5.15 0 0 1-5.15 5.15h-2.31a5.55 5.55 0 0 1-5.541-5.872l.012-.201a2.4 2.4 0 0 1 1.67-2.146l1.142-.362\"/><path d=\"M6.75 18.25a3 3 0 0 1-3-3v-8.5a3 3 0 0 1 3-3h8.5a3 3 0 0 1 2.959 2.5\"/></g>"
},
"box-margins": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" rx=\"3\"/><path d=\"M7.75 3.75v16.5m8.5 0V3.75m-12.5 4h16.5m0 8.5H3.75\"/></g>"
},
"braces": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8 20.25a2 2 0 0 1-2-2v-2.343a4 4 0 0 0-1.172-2.829L3.75 12l1.078-1.078A4 4 0 0 0 6 8.093V5.75a2 2 0 0 1 2-2m8 16.5a2 2 0 0 0 2-2v-2.343a4 4 0 0 1 1.172-2.829L20.25 12l-1.078-1.078A4 4 0 0 1 18 8.093V5.75a2 2 0 0 0-2-2\"/>"
},
"braces-variable": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7 20.25a2 2 0 0 1-2-2v-2.343a4 4 0 0 0-1.172-2.829L2.75 12l1.078-1.078A4 4 0 0 0 5 8.093V5.75a2 2 0 0 1 2-2m10 16.5a2 2 0 0 0 2-2v-2.343a4 4 0 0 1 1.172-2.829L21.25 12l-1.078-1.078A4 4 0 0 1 19 8.093V5.75a2 2 0 0 0-2-2M9 8.143l6 7.714m0-7.714l-6 7.714\"/>"
},
"brackets": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.75 3.75h-2a2 2 0 0 0-2 2v12.5a2 2 0 0 0 2 2h2m6.5-16.5h2a2 2 0 0 1 2 2v12.5a2 2 0 0 1-2 2h-2\"/>"
},
"branch": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7 8.25a2.75 2.75 0 1 0 0-5.5a2.75 2.75 0 0 0 0 5.5m0 0v7.5m0-7.5c0 2.9 2.35 5.25 5.25 5.25h2M7 15.75a2.75 2.75 0 1 0 0 5.5a2.75 2.75 0 0 0 0-5.5m7.25-2.25a2.75 2.75 0 1 0 5.5 0a2.75 2.75 0 0 0-5.5 0\"/>"
},
"branch-compare": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M8.25 5.5a2.75 2.75 0 1 1-5.5 0a2.75 2.75 0 0 1 5.5 0m13 13a2.75 2.75 0 1 1-5.5 0a2.75 2.75 0 0 1 5.5 0\"/><path d=\"M5.5 8.25v7.25a3 3 0 0 0 3 3h4.336M10.75 16l1.793 1.793a1 1 0 0 1 .293.707M10.75 21l1.793-1.793a1 1 0 0 0 .293-.707m5.664-2.75V8.5a3 3 0 0 0-3-3h-4.336M13.25 8l-1.793-1.793a1 1 0 0 1-.293-.707M13.25 3l-1.793 1.793a1 1 0 0 0-.293.707\"/></g>"
},
"branch-fork": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7 8.25a2.75 2.75 0 1 0 0-5.5a2.75 2.75 0 0 0 0 5.5m0 0V12m0 3.75a2.75 2.75 0 1 0 0 5.5a2.75 2.75 0 0 0 0-5.5m0 0V12m10-3.75a2.75 2.75 0 1 0 0-5.5a2.75 2.75 0 0 0 0 5.5m0 0V9a3 3 0 0 1-3 3H7\"/>"
},
"branch-fork-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M6.5 8.25a2.75 2.75 0 1 0 0-5.5a2.75 2.75 0 0 0 0 5.5m0 0V10a2 2 0 0 0 2 2h3m6-3.75a2.75 2.75 0 1 0 0-5.5a2.75 2.75 0 0 0 0 5.5m0 0V10a2 2 0 0 1-2 2h-4m0 0v3.75m0 0a2.75 2.75 0 1 0 0 5.5a2.75 2.75 0 0 0 0-5.5\"/>"
},
"branch-pull-request": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M8.25 5.5a2.75 2.75 0 1 1-5.5 0a2.75 2.75 0 0 1 5.5 0m13 13a2.75 2.75 0 1 1-5.5 0a2.75 2.75 0 0 1 5.5 0m-13 0a2.75 2.75 0 1 1-5.5 0a2.75 2.75 0 0 1 5.5 0M5.5 8.25v7.5\"/><path d=\"M18.5 15.75V8.5a3 3 0 0 0-3-3h-4.336M13.25 8l-1.793-1.793a1 1 0 0 1-.293-.707M13.25 3l-1.793 1.793a1 1 0 0 0-.293.707\"/></g>"
},
"briefcase": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.75 9.894a2.5 2.5 0 0 1 2.5-2.5h11.5a2.5 2.5 0 0 1 2.5 2.5V17.5a2.5 2.5 0 0 1-2.5 2.5H6.25a2.5 2.5 0 0 1-2.5-2.5z\"/><path d=\"M17.75 7.394H6.25a2.5 2.5 0 0 0-2.5 2.5v.303a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3v-.303a2.5 2.5 0 0 0-2.5-2.5M8.603 5.5a1.5 1.5 0 0 1 1.5-1.5h3.794a1.5 1.5 0 0 1 1.5 1.5v1.894H8.603z\"/></g>"
},
"briefcase-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.75 10.5A2.5 2.5 0 0 1 6.25 8h11.5a2.5 2.5 0 0 1 2.5 2.5v7a2.5 2.5 0 0 1-2.5 2.5H6.25a2.5 2.5 0 0 1-2.5-2.5zm4.853-5a1.5 1.5 0 0 1 1.5-1.5h3.794a1.5 1.5 0 0 1 1.5 1.5V8H8.603z\"/>"
},
"brightness": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"4.25\"/><path stroke-linecap=\"round\" d=\"M12 2.75v1.5M5.46 5.46l1.06 1.06M12 19.75v1.5m5.48-3.77l1.06 1.06M2.75 12h1.5m1.21 6.54l1.06-1.06M19.75 12h1.5m-3.77-5.48l1.06-1.06\"/></g>"
},
"broom": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m13.444 17.626l.707-.707a5 5 0 0 0 0-7.071m-.707 7.778l-7.071-7.071m7.07 7.07l-2.828 4.243l-8.485-8.485l4.243-2.828m0 0l.707-.707a5 5 0 0 1 7.07 0m0 0l6.718-6.718\"/>"
},
"bug": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.5 9.08a3.23 3.23 0 0 1 3.23-3.23h2.54a3.23 3.23 0 0 1 3.23 3.23v6.27a4.5 4.5 0 0 1-4.5 4.5v0a4.5 4.5 0 0 1-4.5-4.5zm9 3.77h4.75m-18.5 0H7.5m2.25-9.7v.45A2.25 2.25 0 0 0 12 5.85v0a2.25 2.25 0 0 0 2.25-2.25v-.45M16.5 16.6h1.253a2.5 2.5 0 0 1 2.5 2.5v1.75M7.5 16.6H6.247a2.5 2.5 0 0 0-2.5 2.5v1.75M16.5 9.1h1.253a2.5 2.5 0 0 0 2.5-2.5V4.85M7.5 9.1H6.247a2.5 2.5 0 0 1-2.5-2.5V4.85\"/>"
},
"building-multiple": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.75 5a1.5 1.5 0 0 0-1.5-1.5H9.288a1 1 0 0 0-1 1v1H4.75a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h10zm0 3.5h4.5a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4.5zm0 4h2.5m-2.5 4h2.5\"/><circle cx=\"6.75\" cy=\"9.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"6.75\" cy=\"13\" r=\"1\" fill=\"currentColor\"/><circle cx=\"6.75\" cy=\"16.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"10.75\" cy=\"9.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"10.75\" cy=\"13\" r=\"1\" fill=\"currentColor\"/><circle cx=\"10.75\" cy=\"16.5\" r=\"1\" fill=\"currentColor\"/></g>"
},
"button": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"18.5\" height=\"11\" x=\"2.75\" y=\"6.5\" rx=\"4\"/><path d=\"M7 12h10\"/></g>"
},
"cake": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M4.25 13.25a2.5 2.5 0 0 1 2.5-2.5h10.5a2.5 2.5 0 0 1 2.5 2.5v8H4.25z\"/><path d=\"m4.25 14.87l2.249 1.45a3 3 0 0 0 3.252 0l.623-.4a3 3 0 0 1 3.252 0l.623.4a3 3 0 0 0 3.252 0l2.249-1.45m1.5 6.375H2.75M12 2.75l1.414 1.414a2 2 0 1 1-2.828 0zm0 4.83v3.17\"/></g>"
},
"calculator": {
"body": "<g fill=\"none\"><rect width=\"14.5\" height=\"18.5\" x=\"4.75\" y=\"2.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"3\"/><rect width=\"7.5\" height=\"3.75\" x=\"8.25\" y=\"6.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"1\"/><circle cx=\"8.5\" cy=\"13.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"13.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"15.5\" cy=\"13.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"8.5\" cy=\"17.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"17.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"15.5\" cy=\"17.5\" r=\"1\" fill=\"currentColor\"/></g>"
},
"calendar": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M17.25 4.75H6.75a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h10.5a3.5 3.5 0 0 0 3.5-3.5v-9.5a3.5 3.5 0 0 0-3.5-3.5m-14 4.5h17.5M7.361 4.75v-2m9.25 2v-2\"/>"
},
"calligraphy-pen": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.16 2.75v1.049c0 1.187 0 1.78-.231 2.233a2.12 2.12 0 0 1-.926.927c-.454.23-1.047.23-2.234.23h-.423M4.84 2.75v1.049c0 1.187 0 1.78.231 2.233c.203.4.528.724.926.927c.454.23 1.047.23 2.234.23h.423m0 0L6.319 11.47c-.367.673-.55 1.01-.61 1.362a2.1 2.1 0 0 0 .054.935c.1.344.32.657.762 1.283l2.704 3.83c.934 1.323 1.4 1.983 1.98 2.217a2.12 2.12 0 0 0 1.582 0c.58-.234 1.047-.894 1.98-2.216l2.704-3.83c.442-.627.662-.94.761-1.284a2.1 2.1 0 0 0 .055-.935c-.06-.352-.243-.689-.61-1.362l-2.335-4.28m-6.692 0h6.692M12 13.325v7.522\"/><circle cx=\"12\" cy=\"13.325\" r=\"1.673\" fill=\"currentColor\"/></g>"
},
"camera": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12.857 3.189h-1.714c-.681 0-1.022 0-1.331.094c-.274.083-.529.22-.75.401c-.25.205-.438.489-.816 1.056L7.103 6.454c-1.524 0-2.286 0-2.868.296a2.72 2.72 0 0 0-1.188 1.19c-.297.581-.297 1.343-.297 2.867v5.651c0 1.524 0 2.286.297 2.868c.26.512.677.928 1.188 1.189c.582.296 1.344.296 2.868.296h9.794c1.524 0 2.286 0 2.868-.296a2.72 2.72 0 0 0 1.188-1.19c.297-.581.297-1.343.297-2.867v-5.651c0-1.524 0-2.286-.297-2.868a2.72 2.72 0 0 0-1.188-1.189c-.582-.296-1.344-.296-2.868-.296L15.754 4.74c-.378-.567-.567-.85-.816-1.056a2.2 2.2 0 0 0-.75-.401c-.309-.094-.65-.094-1.331-.094\"/><path d=\"M15.775 13.212a3.775 3.775 0 1 1-7.55 0a3.775 3.775 0 0 1 7.55 0\"/></g>"
},
"cancel": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m5 19l7-7m0 0l7-7m-7 7L5 5m7 7l7 7\"/>"
},
"cancel-circle": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path stroke-linecap=\"round\" d=\"m8.875 8.875l6.25 6.25m0-6.25l-6.25 6.25\"/></g>"
},
"cancel-square": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"M8.25 3.75a4.5 4.5 0 0 0-4.5 4.5v7.5a4.5 4.5 0 0 0 4.5 4.5h7.5a4.5 4.5 0 0 0 4.5-4.5v-7.5a4.5 4.5 0 0 0-4.5-4.5z\"/><path stroke-linecap=\"round\" d=\"m8.655 8.655l6.69 6.69m0-6.69l-6.69 6.69\"/></g>"
},
"candy": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M9.02 7.53L7.53 9.02A5.269 5.269 0 0 0 14 17.243M9.02 7.53q.294-.295.62-.533m-.62.532l.62-.532m0 0q.177-.128.36-.24m0 11.106V6.757m0 0a5.28 5.28 0 0 1 4.288-.54a5.268 5.268 0 0 1 2.183 8.764l-1.49 1.49a5.3 5.3 0 0 1-.981.772m0-11.106v11.106\"/><path d=\"M16.47 7.53a3.16 3.16 0 0 1 0-4.471a1.053 1.053 0 0 1 1.486-.005l2.99 2.99a1.053 1.053 0 0 1-.005 1.486a3.16 3.16 0 0 1-4.47 0M7.53 16.47a3.16 3.16 0 0 0-4.471 0a1.053 1.053 0 0 0-.005 1.486l2.99 2.99a1.053 1.053 0 0 0 1.486-.005a3.16 3.16 0 0 0 0-4.47\"/></g>"
},
"cart": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"9.549\" cy=\"19.049\" r=\"1.701\"/><circle cx=\"16.96\" cy=\"19.049\" r=\"1.701\"/><path d=\"m5.606 5.555l2.01 6.364c.309.978.463 1.467.76 1.829c.26.32.599.567.982.72c.435.173.947.173 1.973.173h3.855c1.026 0 1.538 0 1.972-.173c.384-.153.722-.4.983-.72c.296-.362.45-.851.76-1.829l.409-1.296l.24-.766l.331-1.05a2.5 2.5 0 0 0-2.384-3.252zm0 0l-.011-.037a7 7 0 0 0-.14-.42a2.92 2.92 0 0 0-2.512-1.84C2.84 3.25 2.727 3.25 2.5 3.25\"/></g>"
},
"cent": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12.085 3.875v2.417m0 14.083v-2.417m4.382-1.705a5.84 5.84 0 0 1-4.382 1.705m4.382-9.961a5.84 5.84 0 0 0-4.382-1.705m0 11.666A5.836 5.836 0 0 1 6.5 12.125a5.84 5.84 0 0 1 5.585-5.833\"/>"
},
"center-horizontal": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M20.25 20.25V3.75m-16.5 16.5V3.75\"/><rect width=\"6\" height=\"13\" rx=\"2\" transform=\"matrix(-1 0 0 1 15 5.5)\"/></g>"
},
"center-vertical": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.75 20.25h16.5M3.75 3.75h16.5\"/><rect width=\"6\" height=\"13\" rx=\"2\" transform=\"matrix(0 -1 -1 0 18.5 15)\"/></g>"
},
"chat": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 21.25a9.25 9.25 0 1 0-8.307-5.177c.108.22.144.468.089.706l-.816 3.536a.6.6 0 0 0 .72.72l3.535-.817a1.06 1.06 0 0 1 .706.09A9.2 9.2 0 0 0 12 21.25M7.97 9.886h8.06m-8.06 4.228h5.748\"/>"
},
"checkbox-checked": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" rx=\"4\"/><path d=\"m16.512 9.107l-5.787 5.786l-3.237-3.232\"/></g>"
},
"checkbox-indeterminate": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" rx=\"4\"/><path d=\"M16.19 12H7.81\"/></g>"
},
"checkbox-indeterminate-2": {
"body": "<g fill=\"none\"><rect width=\"18.5\" height=\"18.5\" x=\"2.75\" y=\"2.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"4\"/><path fill=\"currentColor\" d=\"M7.113 6.25a.86.86 0 0 0-.863.862v9.775c0 .477.386.863.862.863h9.775a.863.863 0 0 0 .863-.863V7.114a.863.863 0 0 0-.863-.863z\"/></g>"
},
"checkbox-unchecked": {
"body": "<rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"4\"/>"
},
"checkmark": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m19.75 7.018l-9.257 9.257a1 1 0 0 1-1.414 0L4.25 11.446\"/>"
},
"checkmark-circle": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path stroke-linejoin=\"round\" d=\"m16.375 9.194l-5.611 5.612l-3.139-3.134\"/></g>"
},
"checkmark-starburst": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M7.072 4.069a2.17 2.17 0 0 1 2.804-1.162l1.315.529c.52.208 1.099.208 1.618 0l1.315-.529a2.17 2.17 0 0 1 2.804 1.162l.556 1.303c.22.515.63.925 1.144 1.144l1.303.556a2.17 2.17 0 0 1 1.162 2.804l-.529 1.315a2.17 2.17 0 0 0 0 1.618l.529 1.315a2.17 2.17 0 0 1-1.162 2.804l-1.303.556a2.17 2.17 0 0 0-1.144 1.144l-.556 1.303a2.17 2.17 0 0 1-2.804 1.162l-1.315-.529a2.17 2.17 0 0 0-1.618 0l-1.315.529a2.17 2.17 0 0 1-2.804-1.162l-.556-1.303a2.17 2.17 0 0 0-1.144-1.144l-1.303-.556a2.17 2.17 0 0 1-1.162-2.804l.529-1.315a2.17 2.17 0 0 0 0-1.618l-.529-1.315A2.17 2.17 0 0 1 4.07 7.072l1.303-.556a2.17 2.17 0 0 0 1.144-1.144z\"/><path d=\"m15.899 9.5l-5 5l-2.797-2.793\"/></g>"
},
"chevron-down": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m4.75 9.75l6.19 6.19a1.5 1.5 0 0 0 2.12 0l6.19-6.19\"/>"
},
"chevron-left": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m14.25 4.75l-6.19 6.19a1.5 1.5 0 0 0 0 2.12l6.19 6.19\"/>"
},
"chevron-right": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m9.75 4.75l6.19 6.19a1.5 1.5 0 0 1 0 2.12l-6.19 6.19\"/>"
},
"chevron-up": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m4.75 14.25l6.19-6.19a1.5 1.5 0 0 1 2.12 0l6.19 6.19\"/>"
},
"chrome-restore": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M2.75 9.25a3.5 3.5 0 0 1 3.5-3.5h8.5a3.5 3.5 0 0 1 3.5 3.5v8.5a3.5 3.5 0 0 1-3.5 3.5h-8.5a3.5 3.5 0 0 1-3.5-3.5z\"/><path d=\"M6.75 2.75h8a6.5 6.5 0 0 1 6.5 6.5v8\"/></g>"
},
"chrome-restore-var": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M2.75 9.75a4 4 0 0 1 4-4h7.5a4 4 0 0 1 4 4v7.5a4 4 0 0 1-4 4h-7.5a4 4 0 0 1-4-4z\"/><path d=\"M6.75 2.75h7.5a7 7 0 0 1 7 7v7.5\"/></g>",
"hidden": true
},
"circle": {
"body": "<circle cx=\"12\" cy=\"12\" r=\"9.25\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/>"
},
"circle-small": {
"body": "<circle cx=\"12\" cy=\"12\" r=\"3.25\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/>"
},
"clipboard": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><rect width=\"16.5\" height=\"18.5\" x=\"3.75\" y=\"2.75\" rx=\"3.5\"/><path d=\"M8.25 2.75h7.5v2.5a2 2 0 0 1-2 2h-3.5a2 2 0 0 1-2-2z\"/></g>"
},
"clipboard-paste": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M9.75 21.25h-3a3.5 3.5 0 0 1-3.5-3.5V6.25a3.5 3.5 0 0 1 3.5-3.5h9.5a3.5 3.5 0 0 1 3.5 3.5v2\"/><path d=\"M7.75 2.75h7.5v2.5a2 2 0 0 1-2 2h-3.5a2 2 0 0 1-2-2z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12.25 13.25a2.5 2.5 0 0 1 2.5-2.5h3.5a2.5 2.5 0 0 1 2.5 2.5v5.5a2.5 2.5 0 0 1-2.5 2.5h-3.5a2.5 2.5 0 0 1-2.5-2.5z\"/></g>"
},
"clipboard-search": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M14.25 21.25h3a3.5 3.5 0 0 0 3.5-3.5V6.25a3.5 3.5 0 0 0-3.5-3.5h-9.5a3.5 3.5 0 0 0-3.5 3.5v4\"/><path d=\"M8.75 2.75h7.5v2.5a2 2 0 0 1-2 2h-3.5a2 2 0 0 1-2-2z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9.17 19.67a4.054 4.054 0 1 0-5.733-5.733A4.054 4.054 0 0 0 9.17 19.67m0 0l2.58 2.58\"/></g>"
},
"clock": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M21.25 12a9.25 9.25 0 1 1-18.5 0a9.25 9.25 0 0 1 18.5 0\"/><path d=\"M11.25 6.75v6h4\"/></g>"
},
"closed-captions": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"18.5\" height=\"14.5\" x=\"2.75\" y=\"4.75\" rx=\"4\"/><path d=\"M10.5 14.382a2.75 2.75 0 1 1 0-4.764m7.125 4.764a2.75 2.75 0 1 1 0-4.764\"/></g>"
},
"cloud": {
"body": "<path fill=\"currentColor\" d=\"m7.197 18.496l.037-.75h-.072zm.234-8.83l.728.181zm11.334 1.983l.217-.717zM22 15a4.25 4.25 0 0 0-3.018-4.068l-.434 1.435A2.75 2.75 0 0 1 20.5 15zm-4.25 4.25A4.25 4.25 0 0 0 22 15h-1.5a2.75 2.75 0 0 1-2.75 2.75zm-10.375 0H17.75v-1.5H7.375zm-.216-.005q.108.005.216.005v-1.5q-.07 0-.14-.003zm.003-1.499L7 17.75v1.5q.116 0 .23-.005zM7 17.75a3.5 3.5 0 0 1-3.5-3.5H2a5 5 0 0 0 5 5zm-3.5-3.5a3.5 3.5 0 0 1 3.5-3.5v-1.5a5 5 0 0 0-5 5zm9.268-9.5a6.25 6.25 0 0 0-6.065 4.735l1.456.362a4.75 4.75 0 0 1 4.61-3.597zm6.25 6.25a6.25 6.25 0 0 0-6.25-6.25v1.5a4.75 4.75 0 0 1 4.75 4.75zM7 10.75c.54 0 1.025-.365 1.159-.903l-1.456-.362A.305.305 0 0 1 7 9.25zm10.518.25a1.44 1.44 0 0 0 1.03 1.367l.434-1.435a.04.04 0 0 1 .02.013a.1.1 0 0 1 .016.055z\"/>"
},
"code": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.75 6.5L3.25 12l5.5 5.5m6.5-11l5.5 5.5l-5.5 5.5\"/>"
},
"coffee-hot": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.5 10.682c0-.875.71-1.585 1.585-1.585H16.52c.876 0 1.585.71 1.585 1.585v3.265a7.303 7.303 0 0 1-7.302 7.303v0A7.303 7.303 0 0 1 3.5 13.947z\"/><path d=\"M18.105 10.556h1.464A2.43 2.43 0 0 1 22 12.986v0a2.43 2.43 0 0 1-2.43 2.43h-1.465M6.421 3.75v2.43m4.382-2.43v2.43m4.381-2.43v2.43\"/></g>"
},
"color-palette": {
"body": "<g fill=\"none\"><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(-1 0 0 1 16.654 6.034)\"/><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(-1 0 0 1 12.156 5.221)\"/><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(-1 0 0 1 8.654 7.94)\"/><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(-1 0 0 1 7.685 12.156)\"/><circle cx=\"1.25\" cy=\"1.25\" r=\"1.25\" fill=\"currentColor\" transform=\"matrix(-1 0 0 1 9.904 15.948)\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 12A9.25 9.25 0 1 0 12 21.25c1.318 0 2.224-1.28 2.329-2.594l.117-1.473a3 3 0 0 1 2.758-2.752l1.651-.129c1.28-.1 2.395-1.019 2.395-2.302Z\"/></g>"
},
"comment": {
"body": "<path fill=\"currentColor\" d=\"M7.183 16.958h.75a.75.75 0 0 0-.75-.75zm.839 4.16l.508.552zm4.52-4.16v-.75a.75.75 0 0 0-.508.199zM3.839 6.75A3.25 3.25 0 0 1 7.09 3.5V2a4.75 4.75 0 0 0-4.75 4.75zm0 6.208V6.75h-1.5v6.208zm3.25 3.25a3.25 3.25 0 0 1-3.25-3.25h-1.5a4.75 4.75 0 0 0 4.75 4.75zm.072 0H7.09v1.5h.072zm.022 0h-.022v1.5h.022zm.75 4.542v-3.792h-1.5v3.792zm-.419-.184a.25.25 0 0 1 .42.184h-1.5c0 1.09 1.295 1.657 2.096.92zm4.52-4.16l-4.52 4.16L8.53 21.67l4.52-4.16zm4.877-.198h-4.37v1.5h4.37zm3.25-3.25a3.25 3.25 0 0 1-3.25 3.25v1.5a4.75 4.75 0 0 0 4.75-4.75zm0-6.208v6.208h1.5V6.75zM16.91 3.5a3.25 3.25 0 0 1 3.25 3.25h1.5A4.75 4.75 0 0 0 16.91 2zm-9.822 0h9.822V2H7.089z\"/>"
},
"comment-exclamation": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M7.183 16.958h.75a.75.75 0 0 0-.75-.75zm.839 4.16l.508.552zm4.52-4.16v-.75a.75.75 0 0 0-.508.199zM3.839 6.75A3.25 3.25 0 0 1 7.09 3.5V2a4.75 4.75 0 0 0-4.75 4.75zm0 6.208V6.75h-1.5v6.208zm3.25 3.25a3.25 3.25 0 0 1-3.25-3.25h-1.5a4.75 4.75 0 0 0 4.75 4.75zm.072 0H7.09v1.5h.072zm.022 0h-.022v1.5h.022zm.75 4.542v-3.792h-1.5v3.792zm-.419-.184a.25.25 0 0 1 .42.184h-1.5c0 1.09 1.295 1.657 2.096.92zm4.52-4.16l-4.52 4.16L8.53 21.67l4.52-4.16zm4.877-.198h-4.37v1.5h4.37zm3.25-3.25a3.25 3.25 0 0 1-3.25 3.25v1.5a4.75 4.75 0 0 0 4.75-4.75zm0-6.208v6.208h1.5V6.75zM16.91 3.5a3.25 3.25 0 0 1 3.25 3.25h1.5A4.75 4.75 0 0 0 16.91 2zm-9.822 0h9.822V2H7.089z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 6.25v4\"/><circle cx=\"12\" cy=\"13.25\" r=\"1\" fill=\"currentColor\"/></g>"
},
"comment-multiple": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M6.43 17.742h.75a.75.75 0 0 0-.75-.75zm.84 3.384l-.509-.55zm3.67-3.385v-.75a.75.75 0 0 0-.508.2zM3.736 8.76a2.25 2.25 0 0 1 2.25-2.25v-1.5a3.75 3.75 0 0 0-3.75 3.75zm0 5.982V8.76h-1.5v5.982zm2.25 2.25a2.25 2.25 0 0 1-2.25-2.25h-1.5a3.75 3.75 0 0 0 3.75 3.75zm.427 0h-.427v1.5h.427zm.019 0h-.02v1.5h.02zm.75 3.767V17.74h-1.5v3.018zm-.42-.184a.25.25 0 0 1 .42.184h-1.5c0 1.09 1.296 1.657 2.097.919zm3.671-3.385l-3.67 3.385l1.016 1.103l3.671-3.385zm4.553-.199H10.94v1.5h4.044zm2.25-2.25a2.25 2.25 0 0 1-2.25 2.25v1.5a3.75 3.75 0 0 0 3.75-3.75zm0-5.981v5.982h1.5V8.76zm-2.25-2.25a2.25 2.25 0 0 1 2.25 2.25h1.5a3.75 3.75 0 0 0-3.75-3.75zm-9 0h9v-1.5h-9z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M6.985 2.76h8a6 6 0 0 1 6 6v4.982\"/></g>"
},
"compare-size": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M18.75 8.75a2.5 2.5 0 0 1 2.5 2.5v6.5a2.5 2.5 0 0 1-2.5 2.5H5.25a2.5 2.5 0 0 1-2.5-2.5v-6.5a2.5 2.5 0 0 1 2.5-2.5zm-2.5 7.5v2.5m0-8v2.5m-8-9.5h2.5m3 0h.5a2 2 0 0 1 2 2v.5m-11-2.5h-.5a2 2 0 0 0-2 2v.5\"/>"
},
"compass": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path d=\"M10.195 10.195q.221-.22.475-.404c.382-.275.835-.456 1.74-.818l2.357-.943c.632-.252.947-.379 1.148-.313c.174.058.31.194.368.368c.066.2-.06.517-.313 1.148l-.943 2.357c-.362.905-.543 1.358-.818 1.74q-.183.255-.404.475m-3.61-3.61a4 4 0 0 0-.404.475c-.275.382-.456.835-.818 1.74l-.943 2.357c-.252.632-.379.947-.313 1.148c.058.174.194.31.368.368c.2.066.516-.06 1.148-.313l2.357-.943c.905-.362 1.358-.543 1.74-.818q.255-.183.475-.404m-3.61-3.61l3.61 3.61\"/></g>"
},
"component": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"5.671\" height=\"5.671\" x=\"7.99\" y=\"17.86\" rx=\"1.5\" transform=\"rotate(-45 7.99 17.86)\"/><rect width=\"5.671\" height=\"5.671\" x=\"13.851\" y=\"12\" rx=\"1.5\" transform=\"rotate(-45 13.85 12)\"/><rect width=\"5.671\" height=\"5.671\" x=\"2.13\" y=\"12\" rx=\"1.5\" transform=\"rotate(-45 2.13 12)\"/><rect width=\"5.671\" height=\"5.671\" x=\"7.99\" y=\"6.14\" rx=\"1.5\" transform=\"rotate(-45 7.99 6.14)\"/></g>"
},
"compose": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M10.371 4.25H8.25a5 5 0 0 0-5 5v6.5a5 5 0 0 0 5 5h6.5a5 5 0 0 0 5-5v-2.121\"/><path d=\"M12.299 14.75a1.86 1.86 0 0 0 1.316-.545l6.59-6.59a1.86 1.86 0 0 0 0-2.633l-1.187-1.187a1.86 1.86 0 0 0-2.633 0l-6.59 6.59a1.86 1.86 0 0 0-.545 1.316v3.049z\"/></g>"
},
"computer": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"18.5\" height=\"15.031\" x=\"2.75\" y=\"2.75\" rx=\"3.5\"/><path d=\"M9.11 17.781v3.469m5.78-3.469v3.469m-8.382 0h10.984\"/></g>"
},
"computer-mac": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 6.25a3.5 3.5 0 0 1 3.5-3.5h11.5a3.5 3.5 0 0 1 3.5 3.5v8.031a3.5 3.5 0 0 1-3.5 3.5H6.25a3.5 3.5 0 0 1-3.5-3.5zm0 7.75h18.5M9.11 17.781v1.469a2 2 0 0 1-2 2h-.6m8.38-3.469v1.469a2 2 0 0 0 2 2h.6m-10.982 0h10.984\"/>"
},
"contract-down": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 20.25h4.25a4 4 0 0 0 4-4v-2.5M12 20.25H7.75a4 4 0 0 1-4-4V12M12 20.25V15a3 3 0 0 0-3-3H3.75m0 0V7.75a4 4 0 0 1 4-4h2.5m10 6.5h-5.5a1 1 0 0 1-.707-.293M13.75 3.75v5.5c0 .276.112.526.293.707M20.25 3.75l-5.5 5.5l-.707.707\"/>"
},
"cookies": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M17.076 10.535a2.75 2.75 0 0 0 3.89 0v0c.127-.128.362-.076.393.102a9.25 9.25 0 0 1-15.65 8.154a9.25 9.25 0 0 1 8.154-15.65c.178.031.23.266.102.394v0a2.75 2.75 0 0 0 2.333 4.667a2.75 2.75 0 0 0 .778 2.333\"/><circle cx=\"8.5\" cy=\"15.5\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"7.5\" cy=\"9.5\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"12.5\" cy=\"12.5\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"15.5\" cy=\"16.5\" r=\"1.25\" fill=\"currentColor\"/></g>"
},
"copy": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M16.75 5.75a3 3 0 0 0-3-3h-6.5a3 3 0 0 0-3 3v9.5a3 3 0 0 0 3 3h6.5a3 3 0 0 0 3-3z\"/><path d=\"M19.75 6.75v8.5a6 6 0 0 1-6 6h-5.5\"/></g>"
},
"copy-var": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M16.869 5.75a3 3 0 0 0-3-3H7.211a3 3 0 0 0-3 3v9.579a3 3 0 0 0 3 3h6.658a3 3 0 0 0 3-3z\"/><path d=\"M19.79 6.67v8.579a6 6 0 0 1-6 6H8.132\"/></g>",
"hidden": true
},
"copyleft": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path d=\"M9.172 14.828a4 4 0 1 0 0-5.656\"/></g>"
},
"copyright": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path d=\"M14.828 14.828a4 4 0 1 1 0-5.656\"/></g>"
},
"corner-radius": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.25 4.75h-7.5a7 7 0 0 0-7 7v7.5\"/>"
},
"credit-card": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><rect width=\"18.5\" height=\"14\" x=\"2.75\" y=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" rx=\"3\"/><path d=\"M2.75 9.5h18.5\"/><path stroke-linecap=\"round\" d=\"M14.75 14.25h3\"/></g>"
},
"crop": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 17.653H9.347a3 3 0 0 1-3-3V2.75M2.75 6.347h3.597m11.306 11.306v3.597M8.917 6.347h5.736a3 3 0 0 1 3 3v5.736\"/>"
},
"css": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m20.754 4.792l-2.84 14.31a1.5 1.5 0 0 1-1.099 1.161l-4.442 1.141a1.5 1.5 0 0 1-.746 0l-4.442-1.14a1.5 1.5 0 0 1-1.098-1.162L3.246 4.792A1.5 1.5 0 0 1 4.717 3h14.566a1.5 1.5 0 0 1 1.471 1.792\"/><path d=\"M7.77 6.881h9.53l-8.63 5.577h6.225a1 1 0 0 1 .978 1.205l-.562 2.683a1 1 0 0 1-.653.74l-2.283.786a1 1 0 0 1-.66-.003L8.99 16.9\"/></g>"
},
"cursor": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.084 20.276c-1.06 1.38-3.264.66-3.306-1.079L4.443 5.392C4.407 3.932 6 3.012 7.247 3.773l11.788 7.192c1.485.906 1.006 3.176-.719 3.403l-5.581.738a1.84 1.84 0 0 0-1.221.705z\"/>"
},
"cursor-click": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12.394 20.734c-.757.985-2.332.471-2.362-.771l-.239-9.86a1.317 1.317 0 0 1 2.003-1.157l8.42 5.137c1.06.647.718 2.268-.513 2.431l-3.987.527c-.346.046-.66.227-.872.503z\"/><path stroke-linecap=\"round\" d=\"M3.797 8.75h2.5m3.75-3.502v-2.5M6.815 5.765L5.047 3.998m8.232 1.767l1.768-1.767\"/></g>"
},
"cursor-drag": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.315 11.055v4.176m3.246-6.593V6.555c0-.892-.727-1.615-1.623-1.615s-1.623.723-1.623 1.615v3.747m3.246-.566V4.365a1.62 1.62 0 0 1 1.623-1.615c.897 0 1.623.723 1.623 1.615V9.73m0 .005v-3.18a1.624 1.624 0 0 1 3.246 0v2.19m0 0v.99m0-.99a1.62 1.62 0 0 1 1.624-1.615A1.62 1.62 0 0 1 20.3 8.745v5.935a6.57 6.57 0 0 1-6.57 6.57h-2.95a7.08 7.08 0 0 1-7.069-7.492l.015-.256a3.06 3.06 0 0 1 2.13-2.738l1.458-.462m0 0V11.4\"/>"
},
"cut": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.651 14.43a3.75 3.75 0 1 0-4.302 6.143a3.75 3.75 0 0 0 4.302-6.144m0 0l3.35-4.446m5.45-7.235l-3.82 5.069m1.718 6.611a3.75 3.75 0 1 1 4.302 6.144a3.75 3.75 0 0 1-4.302-6.144m0 0L12 9.984M6.55 2.749L12 9.984\"/>"
},
"dark-theme": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M2.75 12A9.25 9.25 0 0 0 12 21.25V2.75A9.25 9.25 0 0 0 2.75 12\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 21.25a9.25 9.25 0 0 0 0-18.5m0 18.5a9.25 9.25 0 0 1 0-18.5m0 18.5V2.75\"/></g>"
},
"database": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.25 6.25c0 1.933-3.246 3.5-7.25 3.5s-7.25-1.567-7.25-3.5m14.5 0c0-1.933-3.246-3.5-7.25-3.5s-7.25 1.567-7.25 3.5m14.5 0V12M4.75 6.25V12m0 0v5.75c0 1.933 3.246 3.5 7.25 3.5s7.25-1.567 7.25-3.5V12m-14.5 0c0 1.933 3.246 3.5 7.25 3.5s7.25-1.567 7.25-3.5\"/>"
},
"database-add": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.25 6.25c0 1.933-3.246 3.5-7.25 3.5s-7.25-1.567-7.25-3.5m14.5 0c0-1.933-3.246-3.5-7.25-3.5s-7.25 1.567-7.25 3.5m14.5 0v3.53M4.75 6.25V12m0 0v5.75c0 1.756 2.678 3.21 6.17 3.461M4.75 12c0 1.577 2.16 2.91 5.13 3.348\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H18v2.493a.5.5 0 1 1-1 0V18h-2.493a.5.5 0 1 1 0-1H17v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/></g>"
},
"delete": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.687 6.213L6.8 18.976a2.5 2.5 0 0 0 2.466 2.092h3.348m6.698-14.855L17.2 18.976a2.5 2.5 0 0 1-2.466 2.092h-3.348m-1.364-9.952v5.049m3.956-5.049v5.049M2.75 6.213h18.5m-6.473 0v-1.78a1.5 1.5 0 0 0-1.5-1.5h-2.554a1.5 1.5 0 0 0-1.5 1.5v1.78z\"/>"
},
"diamond": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.69 9.915h8.62m-8.62 0H2.75m4.94 0l3.65 10.051M7.69 9.915l2.4-3.933l.55-1.012m5.67 4.945h4.94m-4.94 0l-3.65 10.051m3.65-10.051l-2.4-3.933l-.566-1.012M2.75 9.915c0 .42.079.84.236 1.236c.212.535.642 1.028 1.5 2.013l3.467 3.976c1.397 1.602 2.095 2.404 2.923 2.698q.229.081.464.128M2.75 9.915c0-.42.079-.84.236-1.237c.212-.535.642-1.027 1.5-2.013c.467-.534.7-.801.97-1.008a3.36 3.36 0 0 1 1.361-.619c.334-.068.688-.068 1.397-.068h2.427M21.25 9.915c0 .42-.079.84-.236 1.236c-.212.535-.642 1.028-1.5 2.013l-3.467 3.976c-1.397 1.602-2.095 2.404-2.923 2.698a3.4 3.4 0 0 1-.464.128m8.59-10.051c0-.42-.079-.84-.236-1.237c-.212-.535-.642-1.027-1.5-2.013c-.467-.534-.7-.801-.97-1.008a3.36 3.36 0 0 0-1.361-.619c-.334-.068-.688-.068-1.397-.068h-2.442m-.684 14.996a3.4 3.4 0 0 1-1.32 0M13.344 4.97H10.64\"/>"
},
"directions": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.507 14.007a2.84 2.84 0 0 1 0-4.014l6.486-6.486a2.84 2.84 0 0 1 4.014 0l6.486 6.486a2.84 2.84 0 0 1 0 4.014l-6.486 6.486a2.84 2.84 0 0 1-4.014 0z\"/><path d=\"m14.46 9.02l1.394 1.395a1 1 0 0 1 .293.707m-1.688 2.102l1.395-1.395a1 1 0 0 0 .293-.707m-7.46 4.031v-2.53a1.5 1.5 0 0 1 1.5-1.5h5.96\"/></g>"
},
"do-not-disturb": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path stroke-linecap=\"round\" d=\"M7.5 12h9\"/></g>"
},
"document": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"15\" height=\"18.5\" x=\"4.5\" y=\"2.75\" rx=\"3.5\"/><path d=\"M8.5 6.755h7m-7 4h7m-7 4H12\"/></g>"
},
"dollar": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M16.441 8.26S15.884 5.621 12 5.334m-4.376 10.52S8.75 18.518 12 18.684M12 2.75v2.584m0 15.916v-2.567m0-13.35a10 10 0 0 0-.704-.024c-1.688 0-3.881 1.405-3.881 3.367c0 1.963 1.589 2.732 4.388 3.21s4.782 1.531 4.782 3.696s-2.32 3.11-4.266 3.11a6 6 0 0 1-.319-.009\"/>"
},
"dollar-circle": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M15.099 9.723s-.377-1.783-3.001-1.977m-2.957 7.108s.761 1.8 2.957 1.912m0-10.766v1.746m0 10.754v-1.734m0-9.02a7 7 0 0 0-.476-.017c-1.14 0-2.622.95-2.622 2.275c0 1.326 1.073 1.846 2.965 2.169s3.23 1.035 3.23 2.497s-1.566 2.101-2.881 2.101a4 4 0 0 1-.216-.005\"/><circle cx=\"12.25\" cy=\"12.25\" r=\"9.25\" stroke-linejoin=\"round\"/></g>"
},
"door": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5.25 6.25a2.5 2.5 0 0 1 2.5-2.5h8.5a2.5 2.5 0 0 1 2.5 2.5v15H5.25zm-2.5 15h18.5\"/><circle cx=\"15.25\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/></g>"
},
"door-open": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.157 20.517h.593a2.5 2.5 0 0 0 2.5-2.5V5.75a2.5 2.5 0 0 0-2.5-2.5h-9.5c-.55 0-1.06.178-1.473.48m-1.02 13.742a1.5 1.5 0 0 0 .86 1.357l5.896 2.775a1.5 1.5 0 0 0 2.138-1.358V8.387a1.5 1.5 0 0 0-.86-1.356l-7.014-3.3m0 0A2.5 2.5 0 0 0 4.75 5.75v11.722\"/><circle cx=\"10.25\" cy=\"12.75\" r=\"1.25\" fill=\"currentColor\"/></g>"
},
"draw-text": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m5.719 16.25l1.92-4.404m0 0h6.91m-6.91 0l2.94-6.747a.553.553 0 0 1 1.029 0l2.941 6.747m0 0l.337.774\"/><path fill=\"currentColor\" d=\"M15.68 20.936a2.5 2.5 0 0 0 1.218-.673l5.455-5.45a2.526 2.526 0 1 0-3.57-3.573l-5.453 5.452c-.335.336-.57.76-.675 1.222l-.535 2.354a1.007 1.007 0 0 0 1.206 1.206z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m3.75 19.687l.568.234c.638.263 1.364.175 1.956-.18c.69-.411 1.649-.915 2.483-1.1c.583-.13 1.243.199 1.091.776c-.17.642-.69 1.396-.192 1.745c.75.525 5.031-.818 5.031-.818\"/></g>"
},
"drop": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M12 21c-1.804 0-3.246-.566-4.397-1.446C2.38 15.557 5.832 8.09 10.801 3.522a1.767 1.767 0 0 1 2.398 0c4.97 4.568 8.42 12.035 3.198 16.032C15.246 20.434 13.804 21 12 21Z\"/>"
},
"emoji": {
"body": "<g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/><circle cx=\"9\" cy=\"9.5\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"15\" cy=\"9.5\" r=\"1.25\" fill=\"currentColor\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.464 14.25a4 4 0 0 1-6.928 0\"/></g>"
},
"emoji-frown": {
"body": "<g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/><circle cx=\"9\" cy=\"9.5\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"15\" cy=\"9.5\" r=\"1.25\" fill=\"currentColor\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.464 15.813a4 4 0 0 0-6.928 0\"/></g>"
},
"emoji-grin": {
"body": "<g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/><circle cx=\"9\" cy=\"9\" r=\"1.25\" fill=\"currentColor\"/><circle cx=\"15\" cy=\"9\" r=\"1.25\" fill=\"currentColor\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.5 12.75c.276 0 .503.224.475.5a4.999 4.999 0 0 1-9.594 1.413a5 5 0 0 1-.356-1.414c-.028-.275.199-.499.475-.499z\"/></g>"
},
"emoji-laughter": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"9.25\"/><path d=\"M16.5 12.75c.276 0 .503.224.475.5a4.999 4.999 0 0 1-9.594 1.413a5 5 0 0 1-.356-1.414c-.028-.275.199-.499.475-.499zM7.264 9.082a1.797 1.797 0 0 1 3.472 0m2.528 0a1.796 1.796 0 0 1 3.472 0\"/></g>"
},
"eraser": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.788 20.5h9.02m-9.02 0a3.47 3.47 0 0 0 2.486-1.02l1.29-1.29M9.788 20.5a3.47 3.47 0 0 1-2.438-1.02l-3.33-3.33a3.48 3.48 0 0 1 0-4.923l1.29-1.29m0 0l5.417-5.417a3.48 3.48 0 0 1 4.923 0l3.33 3.33a3.48 3.48 0 0 1 0 4.924l-5.417 5.416M5.31 9.936l.367.368l7.585 7.585l.301.301\"/>"
},
"expand": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 20.25h4.25a4 4 0 0 0 4-4v-2.5M12 20.25H7.75a4 4 0 0 1-4-4V12M12 20.25V15a3 3 0 0 0-3-3H3.75m0 0V7.75a4 4 0 0 1 4-4h2.5m3.5 0h5.5c.276 0 .526.112.707.293m.293 6.207v-5.5a1 1 0 0 0-.293-.707M13.75 10.25l5.5-5.5l.707-.707\"/>"
},
"extension": {
"body": "<path fill=\"currentColor\" d=\"M6 9a.75.75 0 0 0 0 1.5zm4 10a.75.75 0 0 0 1.5 0zm8.5-10a.75.75 0 0 0 0 1.5zM16 5a.75.75 0 0 0-1.5 0zm-.267.738l-.146.736zm-.472-.471l-.735.146zm3.977 9.466l-.735.146zm-.738-.483V15zm.267.011l.146-.735zM6.738 9.268l.736.146zm-.471.471l-.146-.735zm8.994 8.995l.736.146zm.472-.471l-.146-.736zm-9.466-4l-.146.735zm.471.471l-.735.146zm12.029-4.995l.146.736zm.471-.471l-.735-.146zm-8.971 8.995l-.146.735zm.471.47l.736-.145zm0-13.465l.736.146zm-.471.471l.146.736zM11.5 5A1.5 1.5 0 0 1 13 3.5V2a3 3 0 0 0-3 3zM9.75 6.5H10V5h-.25zM7.5 8.75A2.25 2.25 0 0 1 9.75 6.5V5A3.75 3.75 0 0 0 6 8.75zm0 .25v-.25H6V9zm-3 3A1.5 1.5 0 0 1 6 10.5V9a3 3 0 0 0-3 3zM6 13.5A1.5 1.5 0 0 1 4.5 12H3a3 3 0 0 0 3 3zm1.5 1.75V15H6v.25zm2.25 2.25a2.25 2.25 0 0 1-2.25-2.25H6A3.75 3.75 0 0 0 9.75 19zm.25 0h-.25V19H10zm3 3a1.5 1.5 0 0 1-1.5-1.5H10a3 3 0 0 0 3 3zm1.5-1.5a1.5 1.5 0 0 1-1.5 1.5V22a3 3 0 0 0 3-3zm1.75-1.5H16V19h.25zm2.25-2.25a2.25 2.25 0 0 1-2.25 2.25V19A3.75 3.75 0 0 0 20 15.25zm0-.25v.25H20V15zm0-1.5A1.5 1.5 0 0 1 17 12h-1.5a3 3 0 0 0 3 3zM17 12a1.5 1.5 0 0 1 1.5-1.5V9a3 3 0 0 0-3 3zm1.5-3.25V9H20v-.25zM16.25 6.5a2.25 2.25 0 0 1 2.25 2.25H20A3.75 3.75 0 0 0 16.25 5zm-.25 0h.25V5H16zm-3-3A1.5 1.5 0 0 1 14.5 5H16a3 3 0 0 0-3-3zM16 5h-.087l-.051-.001c-.024 0-.01-.002.017.004l-.292 1.471c.148.03.31.026.413.026zm-1.5 0c0 .103-.004.265.026.413l1.471-.292c.006.027.005.04.004.017v-.05L16 5zm1.38.003a.15.15 0 0 1 .117.118l-1.471.292a1.35 1.35 0 0 0 1.06 1.061zM20 15c0-.104.003-.265-.026-.413l-1.471.292c-.006-.027-.005-.04-.004-.017V15zm-1.5 0l.138.001c.024 0 .01.002-.017-.004l.292-1.471c-.148-.03-.31-.026-.413-.026zm1.474-.413a1.35 1.35 0 0 0-1.06-1.061l-.293 1.471a.15.15 0 0 1-.118-.118zM6 9l-.001.138c0 .024-.002.01.004-.017l1.471.292c.03-.148.026-.31.026-.413zm0 1.5c.103 0 .265.004.413-.026l-.292-1.471c.027-.006.04-.005.017-.004A2 2 0 0 1 6 9zm.003-1.38a.15.15 0 0 1 .118-.117l.292 1.471a1.35 1.35 0 0 0 1.061-1.06zM16 19v-.087l.001-.051c0-.024.002-.01-.004.017l-1.471-.292c-.03.148-.026.31-.026.413zm0-1.5c-.104 0-.265-.004-.413.026l.292 1.471c-.027.006-.04.005-.017.004h.05L16 19zm-.003 1.38a.15.15 0 0 1-.118.117l-.292-1.471a1.35 1.35 0 0 0-1.061 1.06zM6 15l.138.001c.024 0 .01.002-.017-.004l.292-1.471c-.148-.03-.31-.026-.413-.026zm1.5 0c0-.104.004-.265-.026-.413l-1.471.292c-.006-.027-.005-.04-.004-.017V15zm-1.38-.003a.15.15 0 0 1-.117-.118l1.471-.292a1.35 1.35 0 0 0-1.06-1.061zM18.5 10.5c.103 0 .265.004.413-.026l-.292-1.471c.027-.006.04-.005.017-.004A2 2 0 0 1 18.5 9zm0-1.5v.087l-.001.051c0 .024-.002.01.004-.017l1.471.292c.03-.148.026-.31.026-.413zm.413 1.474a1.35 1.35 0 0 0 1.061-1.06l-1.471-.293a.15.15 0 0 1 .118-.118zM10 19l.138.001c.024 0 .01.002-.017-.004l.292-1.471c-.148-.03-.31-.026-.413-.026zm1.5 0c0-.103.004-.265-.026-.413l-1.471.292c-.006-.027-.005-.04-.004-.017A2 2 0 0 1 10 19zm-1.38-.003a.15.15 0 0 1-.117-.118l1.471-.292a1.35 1.35 0 0 0-1.06-1.061zM10 5l-.001.138c0 .024-.002.01.004-.017l1.471.292c.03-.148.026-.31.026-.413zm0 1.5c.103 0 .265.004.413-.026l-.292-1.471c.027-.006.04-.005.017-.004h-.05L10 5zm.003-1.38a.15.15 0 0 1 .118-.117l.292 1.471a1.35 1.35 0 0 0 1.061-1.06z\"/>"
},
"eye": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.182 12.808C4.233 14.613 7.195 18.81 12 18.81c4.813 0 7.77-4.199 8.82-6.002a1.6 1.6 0 0 0-.001-1.615C19.769 9.389 16.809 5.19 12 5.19s-7.768 4.197-8.818 6.001a1.6 1.6 0 0 0 0 1.617Z\"/><path d=\"M12 14.625a2.625 2.625 0 1 0 0-5.25a2.625 2.625 0 0 0 0 5.25Z\"/></g>"
},
"eye-off": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m3.282 21.782l4.278-4.278M21.782 3.282L17.673 7.39m-3.363 3.363a2.64 2.64 0 0 0-1.063-1.063a2.625 2.625 0 1 0-2.494 4.62m3.557-3.557l-3.557 3.557m3.557-3.557l3.363-3.363m-6.92 6.92L7.56 17.504M17.673 7.39c-.38-.319-.791-.621-1.232-.894C15.2 5.726 13.717 5.19 12 5.19c-4.956 0-7.948 4.459-8.91 6.16c-.11.196-.165.293-.197.446a1.2 1.2 0 0 0 0 .408c.032.152.088.25.198.445c.51.903 1.593 2.582 3.237 3.96c.38.319.791.621 1.232.895m12.18-7.925c.528.694.919 1.328 1.17 1.773c.11.194.165.292.197.444c.023.112.023.296 0 .408c-.032.152-.087.25-.197.444c-.96 1.702-3.95 6.162-8.91 6.162q-.714-.002-1.374-.117\"/>"
},
"eyedropper": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.047 7.819L20.92 9.69m-1.872-1.87l-2.864-2.864m2.864 2.864l1.496-1.496a1 1 0 0 0 0-1.414l-1.45-1.45a1 1 0 0 0-1.414 0l-1.496 1.496m-1.872-1.872l1.872 1.872m-3.796 2.751a1.5 1.5 0 0 1 2.121 0l1.787 1.786a1.5 1.5 0 0 1 0 2.12l-8.562 8.563a1.5 1.5 0 0 1-.829.421l-2.12.332a1.5 1.5 0 0 1-1.714-1.715l.334-2.118a1.5 1.5 0 0 1 .42-.827z\"/>"
},
"eyedropper-color": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.047 7.819L20.92 9.69m-1.872-1.87l-2.864-2.864m2.864 2.864l1.496-1.496a1 1 0 0 0 0-1.414l-1.45-1.45a1 1 0 0 0-1.414 0l-1.496 1.496m-1.872-1.872l1.872 1.872M6.235 13.86l-2.202 2.202c-.205.205-.308.307-.387.425q-.107.157-.171.335c-.048.134-.07.277-.116.563l-.096.608c-.173 1.1-.26 1.65-.087 2.05c.151.35.43.629.78.78c.399.174.949.087 2.05-.085l.61-.096c.286-.044.43-.067.563-.115q.18-.065.337-.17c.117-.08.22-.183.425-.389l7.718-7.718c.594-.594.891-.89 1.002-1.233a1.5 1.5 0 0 0 0-.927c-.11-.343-.408-.64-1.002-1.234l-.513-.513c-.594-.594-.891-.891-1.234-1.002a1.5 1.5 0 0 0-.927 0c-.342.11-.64.408-1.233 1.002zm0 0h7.815\"/>"
},
"eyedropper-color-accent": {
"body": "<path fill=\"currentColor\" d=\"m7.941 19.968l6.109-6.108H6.235l-2.202 2.202c-.205.205-.308.307-.387.425a1.5 1.5 0 0 0-.171.335c-.048.134-.07.277-.116.563l-.096.608c-.173 1.1-.26 1.65-.087 2.05c.151.35.43.629.78.78c.399.174.949.087 2.05-.085l.61-.096c.286-.044.43-.067.563-.115q.18-.065.337-.17c.117-.08.22-.183.425-.389\"/>"
},
"facebook": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M10.478 21.125a9.3 9.3 0 0 0 3.037.002m-3.038-.002A9.25 9.25 0 0 1 2.75 12a9.25 9.25 0 1 1 10.765 9.127m-3.038-.002V16.12H8.58a.6.6 0 0 1-.6-.6v-1.838a.6.6 0 0 1 .6-.6h1.897V9.95a3 3 0 0 1 3-3h1.81a1 1 0 0 1 1 1v1.04a1 1 0 0 1-1 1h-.772a1 1 0 0 0-1 1v2.092h2.297a.6.6 0 0 1 .592.698l-.25 1.504a1 1 0 0 1-.986.836h-1.653v5.007\"/>"
},
"fast-foward": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M5.996 18.323c-1.02.784-2.496.057-2.496-1.229V6.906c0-1.286 1.476-2.013 2.496-1.229l6.224 5.192a1.473 1.473 0 0 1 0 2.262z\"/><path d=\"M15.246 18.323c-1.02.784-2.496.057-2.496-1.229V6.906c0-1.286 1.476-2.013 2.496-1.229l6.224 5.192a1.473 1.473 0 0 1 0 2.262z\"/></g>"
},
"figma": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M5.833 5.833A3.083 3.083 0 0 1 8.917 2.75H12v6.167H8.917a3.083 3.083 0 0 1-3.084-3.084m12.334 0a3.083 3.083 0 0 0-3.084-3.083H12v6.167h3.083a3.083 3.083 0 0 0 3.084-3.084\"/><rect width=\"6.167\" height=\"6.167\" rx=\"3.083\" transform=\"matrix(-1 0 0 1 18.167 8.917)\"/><path d=\"M5.833 12a3.083 3.083 0 0 1 3.084-3.083H12v6.166H8.917A3.083 3.083 0 0 1 5.833 12\"/><path d=\"M5.833 18.167a3.083 3.083 0 0 1 3.084-3.084H12v3.084a3.083 3.083 0 0 1-3.083 3.083v0a3.083 3.083 0 0 1-3.084-3.083\"/></g>"
},
"file": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M11.688 3.063a3.5 3.5 0 0 1 1.027.712l5.968 5.97c.3.3.54.647.711 1.026m-7.706-7.708a3.5 3.5 0 0 0-1.448-.313H7.792a3.5 3.5 0 0 0-3.5 3.5v11.5a3.5 3.5 0 0 0 3.5 3.5h8.416a3.5 3.5 0 0 0 3.5-3.5v-5.53c0-.505-.109-.999-.314-1.45m-7.706-7.707V8.77a2 2 0 0 0 2 2h5.706\"/>"
},
"file-add": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M6.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H7v2.493a.5.5 0 1 1-1 0V18H3.507a.5.5 0 0 1 0-1H6v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.292 10.25v-4a3.5 3.5 0 0 1 3.5-3.5h2.448a3.5 3.5 0 0 1 1.447.313M13.75 21.25h2.458a3.5 3.5 0 0 0 3.5-3.5v-5.53c0-.505-.109-.999-.314-1.45m-7.706-7.707a3.5 3.5 0 0 1 1.027.712l5.968 5.97c.3.3.54.647.711 1.026m-7.706-7.708V8.77a2 2 0 0 0 2 2h5.706\"/></g>"
},
"file-sync": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.292 10.25v-4a3.5 3.5 0 0 1 3.5-3.5h2.448a3.5 3.5 0 0 1 1.447.313M13.75 21.25h2.458a3.5 3.5 0 0 0 3.5-3.5v-5.53c0-.505-.109-.999-.314-1.45m-7.706-7.707a3.5 3.5 0 0 1 1.027.712l5.968 5.97c.3.3.54.647.711 1.026m-7.706-7.708V8.77a2 2 0 0 0 2 2h5.706\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M6.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m1.548-8.64a3.5 3.5 0 0 0-4.929 2.234a.5.5 0 0 0 .966.259A2.5 2.5 0 0 1 8.3 15.765h-.565a.5.5 0 0 0 0 1H9.5a.5.5 0 0 0 .5-.5V14.5a.5.5 0 0 0-1 0v.55a3.5 3.5 0 0 0-.952-.69m1.833 4.046a.5.5 0 0 0-.966-.259A2.5 2.5 0 0 1 4.7 19.235h.565a.5.5 0 0 0 0-1H3.5a.5.5 0 0 0-.5.5V20.5a.5.5 0 0 0 1 0v-.55a3.5 3.5 0 0 0 5.88-1.544\" clip-rule=\"evenodd\"/></g>"
},
"filter": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 7.25h15M7.385 12h9.23m-6.345 4.75h3.46\"/>"
},
"filter-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.145 17.704v-3.976c0-.381 0-.572-.044-.75a1.5 1.5 0 0 0-.192-.446c-.1-.155-.238-.286-.515-.548L3.578 7.43a2.648 2.648 0 0 1 1.82-4.572h13.189a2.664 2.664 0 0 1 1.852 4.579l-4.765 4.607c-.27.261-.405.392-.501.545a1.5 1.5 0 0 0-.187.441c-.044.176-.044.364-.044.74v3.935c0 .542 0 .813-.062 1.057a2 2 0 0 1-.641 1.027c-.192.163-.436.282-.923.52c-1.14.557-1.709.835-2.172.835a2 2 0 0 1-1.795-1.121c-.204-.416-.204-1.05-.204-2.318\"/>"
},
"filter-cancel": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 7.25h5.75M7.385 12H12m-1.73 4.75h3.46\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 12a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m-2.352-7.852a.5.5 0 0 1 .707 0L17.5 5.793l1.645-1.645a.5.5 0 1 1 .707.707L18.207 6.5l1.645 1.645a.5.5 0 0 1-.707.707L17.5 7.207l-1.645 1.645a.5.5 0 0 1-.707-.707L16.793 6.5l-1.645-1.645a.5.5 0 0 1 0-.707\" clip-rule=\"evenodd\"/></g>"
},
"filter-cancel-2": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m17.52 10.25l2.919-2.814a2.664 2.664 0 0 0-1.852-4.579H5.397a2.648 2.648 0 0 0-1.82 4.572l4.817 4.555c.277.262.415.393.515.548a1.5 1.5 0 0 1 .192.446c.044.178.044.369.044.75v3.976c0 1.268 0 1.902.204 2.318a2 2 0 0 0 .901.91\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m-2.352-7.852a.5.5 0 0 1 .707 0l1.645 1.645l1.645-1.645a.5.5 0 1 1 .707.707L18.207 17.5l1.645 1.645a.5.5 0 0 1-.707.707L17.5 18.207l-1.645 1.645a.5.5 0 1 1-.707-.707l1.645-1.645l-1.645-1.645a.5.5 0 0 1 0-.707\" clip-rule=\"evenodd\"/></g>"
},
"flag": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5.25 21.25v-6m0 0v-10a1.5 1.5 0 0 1 1.5-1.5h11.086a1 1 0 0 1 .821 1.571L15.75 9.5l2.907 4.179a1 1 0 0 1-.82 1.571z\"/>"
},
"flag-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5.25 15.182v6.07m0-6.07a7.5 7.5 0 0 1 7.25 0a7.5 7.5 0 0 0 6.936.164a.57.57 0 0 0 .314-.518V3.682a7.5 7.5 0 0 1-7.25 0a7.5 7.5 0 0 0-6.722-.265a.93.93 0 0 0-.528.855z\"/>"
},
"flashlight": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M6.512 7.71h10.976m-8.73 3.78h6.477v8.11a1.9 1.9 0 0 1-1.9 1.9h-2.677a1.9 1.9 0 0 1-1.9-1.9z\"/><path d=\"m5.806 7.99l2.952 3.5h6.477l2.959-3.5a1 1 0 0 0 .236-.645V4.85A1.85 1.85 0 0 0 16.58 3H7.42a1.85 1.85 0 0 0-1.85 1.85v2.495a1 1 0 0 0 .236.645m6.191 7.039v1.766\"/></g>"
},
"foldable-horizontal": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 5.25L5.223 3.601A2 2 0 0 0 2.75 5.545v12.91A2 2 0 0 0 5.223 20.4L12 18.75m0-13.5v13.5m0-13.5l6.777-1.649a2 2 0 0 1 2.473 1.944v12.91a2 2 0 0 1-2.473 1.944L12 18.75\"/>"
},
"foldable-horizontal-half": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m12 5.25l6.777-1.649a2 2 0 0 1 2.473 1.944v12.91a2 2 0 0 1-2.473 1.944L12 18.75z\"/><path stroke-dasharray=\"2.5 3\" d=\"m9.5 19.358l-4.895 1.19a1.5 1.5 0 0 1-1.855-1.457V4.91a1.5 1.5 0 0 1 1.855-1.46L9.5 4.641\"/></g>"
},
"foldable-vertical": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m6.375 12l-1.39 6.853a2 2 0 0 0 1.961 2.397h10.108a2 2 0 0 0 1.96-2.397L17.625 12m-11.25 0h11.25m-11.25 0l-1.39-6.853A2 2 0 0 1 6.947 2.75h10.108a2 2 0 0 1 1.96 2.397L17.625 12\"/>"
},
"foldable-vertical-half": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m17.25 12l1.648 6.777a2 2 0 0 1-1.943 2.473h-9.91A2 2 0 0 1 5.1 18.777L6.75 12z\"/><path stroke-dasharray=\"2 3\" d=\"m6.142 9.5l-1.19-4.895A1.5 1.5 0 0 1 6.408 2.75H17.59a1.5 1.5 0 0 1 1.458 1.855L17.859 9.5\"/></g>"
},
"folder": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 8.623v7.379a4 4 0 0 0 4 4h10.5a4 4 0 0 0 4-4v-5.69a4 4 0 0 0-4-4H12M2.75 8.624V6.998a3 3 0 0 1 3-3h2.9a2.5 2.5 0 0 1 1.768.732L12 6.313m-9.25 2.31h5.904a2.5 2.5 0 0 0 1.768-.732L12 6.313\"/>"
},
"folder-add": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H18v2.494a.5.5 0 0 1-1 0V18h-2.493a.5.5 0 1 1 0-1H17v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 8.623v6.579c0 1.68 0 2.52.327 3.162a3 3 0 0 0 1.311 1.31c.642.328 1.482.328 3.162.328h2.7M2.75 8.623V7.598c0-1.26 0-1.89.245-2.371a2.25 2.25 0 0 1 .984-.984c.48-.245 1.11-.245 2.371-.245h1.679c.611 0 .917 0 1.205.07a2.5 2.5 0 0 1 .722.299c.253.154.469.37.901.803L12 6.313m-9.25 2.31h5.283c.611 0 .917 0 1.205-.069a2.5 2.5 0 0 0 .722-.3c.252-.154.469-.37.901-.802L12 6.312m0 0h4.449c1.68 0 2.52 0 3.163.326a3 3 0 0 1 1.31 1.311c.267.521.316 1.174.326 2.301\"/></g>"
},
"folder-open": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m3.882 18.043l4.041-5.623a4 4 0 0 1 3.249-1.665h8.752M3.882 18.043a3.65 3.65 0 0 0 2.777 1.277h8.343a4 4 0 0 0 3.405-1.9l2.918-4.734a1.287 1.287 0 0 0-1.115-1.931h-.286M3.882 18.043A3.65 3.65 0 0 1 3 15.661V7.424A2.744 2.744 0 0 1 5.744 4.68h2.653c.607 0 1.189.24 1.618.67l.911.91a1.83 1.83 0 0 0 1.294.537l4.044-.001a3.66 3.66 0 0 1 3.66 3.66v.299\"/>"
},
"full-screen-maximize": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.75 8.345V6.25a2.5 2.5 0 0 1 2.5-2.5h2.095M3.75 15.655v2.095a2.5 2.5 0 0 0 2.5 2.5h2.095M20.25 8.345V6.25a2.5 2.5 0 0 0-2.5-2.5h-2.095m4.595 11.905v2.095a2.5 2.5 0 0 1-2.5 2.5h-2.095\"/>"
},
"full-screen-minimize": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.345 3.75v2.095a2.5 2.5 0 0 1-2.5 2.5H3.75M8.345 20.25v-2.095a2.5 2.5 0 0 0-2.5-2.5H3.75M15.655 3.75v2.095a2.5 2.5 0 0 0 2.5 2.5h2.095M15.655 20.25v-2.095a2.5 2.5 0 0 1 2.5-2.5h2.095\"/>"
},
"game": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.031 3.887H7.97a5.22 5.22 0 0 0-5.219 5.22v8.265c0 2.075 2.533 3.085 3.962 1.581l2.976-3.134h4.624l2.875 3.46c1.374 1.654 4.063.682 4.063-1.467V9.106a5.22 5.22 0 0 0-5.219-5.219M8.138 8.39v4m-2-2h4\"/><circle cx=\"14.662\" cy=\"9.39\" r=\"1\" fill=\"currentColor\"/><circle cx=\"16.862\" cy=\"11.59\" r=\"1\" fill=\"currentColor\"/></g>"
},
"gift": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.5 12.5H12V21H7a2.5 2.5 0 0 1-2.5-2.5zm-1.75-3A1.5 1.5 0 0 1 4.25 8H12v4.5H4.25a1.5 1.5 0 0 1-1.5-1.5zm9.25 3h7.5v6A2.5 2.5 0 0 1 17 21h-5zM12 8h7.75a1.5 1.5 0 0 1 1.5 1.5V11a1.5 1.5 0 0 1-1.5 1.5H12zM7 5.5A2.5 2.5 0 0 1 9.5 3v0A2.5 2.5 0 0 1 12 5.5V8H9.5A2.5 2.5 0 0 1 7 5.5m10 0A2.5 2.5 0 0 0 14.5 3v0A2.5 2.5 0 0 0 12 5.5V8h2.5A2.5 2.5 0 0 0 17 5.5\"/>"
},
"git-commit": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.75 12a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0m0 0h5.5m-18.5 0h5.5\"/>"
},
"github": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M9.096 21.25v-3.146a3.33 3.33 0 0 1 .758-2.115c-3.005-.4-5.28-1.859-5.28-5.798c0-1.666 1.432-3.89 1.432-3.89c-.514-1.13-.5-3.084.06-3.551c0 0 1.95.175 3.847 1.75c1.838-.495 3.764-.554 5.661 0c1.897-1.575 3.848-1.75 3.848-1.75c.558.467.573 2.422.06 3.551c0 0 1.432 2.224 1.432 3.89c0 3.94-2.276 5.398-5.28 5.798a3.33 3.33 0 0 1 .757 2.115v3.146\"/><path d=\"M3.086 16.57c.163.554.463 1.066.878 1.496c.414.431.932.77 1.513.988a4.46 4.46 0 0 0 3.62-.216\"/></g>"
},
"gitlab": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.063 12.052a3.19 3.19 0 0 1-1.058 3.606l-6.706 5.164a2.13 2.13 0 0 1-2.598 0l-6.706-5.164a3.19 3.19 0 0 1-1.058-3.606L5.915 3.73l2.37 6.621c.15.423.552.706 1.001.706h5.428c.45 0 .85-.283 1.002-.706l2.37-6.621z\"/>"
},
"globe": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 12A9.25 9.25 0 0 0 12 2.75M21.25 12H2.75m18.5 0A9.25 9.25 0 0 1 12 21.25m0-18.5A9.25 9.25 0 0 0 2.75 12M12 2.75c-.5 0-4 4.141-4 9.25s3.5 9.25 4 9.25m0-18.5c.5 0 4 4.141 4 9.25s-3.5 9.25-4 9.25M2.75 12A9.25 9.25 0 0 0 12 21.25\"/>"
},
"google": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M13.365 2.83a9.25 9.25 0 0 1 4.744 2.089c.338.284.336.794.024 1.106l-1.616 1.616c-.312.312-.816.306-1.171.044a5.365 5.365 0 1 0 1.615 6.705h-3.91a.8.8 0 0 1-.8-.8V11.3a.8.8 0 0 1 .8-.8h7.493c.316 0 .61.186.681.495c.313 1.362-.125 3.246-.158 3.384l-.004.016c-.528 1.963-1.661 3.706-3.274 4.944a9.25 9.25 0 1 1-4.424-16.51\"/>"
},
"google-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.201 9.947a5.365 5.365 0 0 1 8.145-2.262c.355.262.858.268 1.17-.044l1.617-1.616c.312-.312.314-.822-.024-1.106A9.25 9.25 0 0 0 3.612 8.46M7.2 9.947a5.365 5.365 0 0 0 1.69 6.31M7.2 9.947L3.611 8.46m5.28 7.796a5.365 5.365 0 0 0 6.533 0m-6.532 0l-2.365 3.082m8.897-3.082a5.4 5.4 0 0 0 1.537-1.866h-3.91a.8.8 0 0 1-.8-.8V11.3a.8.8 0 0 1 .8-.8h7.493c.316 0 .61.186.681.495c.313 1.362-.125 3.246-.158 3.384l-.004.016c-.528 1.963-1.661 3.706-3.274 4.944m-2.365-3.083l2.365 3.082m0 0a9.25 9.25 0 0 1-11.262 0m0 0A9.25 9.25 0 0 1 3.612 8.46\"/>"
},
"google-chrome": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 8.25a3.75 3.75 0 0 0-3.747 3.904M12 8.25a3.75 3.75 0 0 1 3.608 4.775M12 8.25h8.458m-4.85 4.775a3.752 3.752 0 0 1-7.355-.871m7.355.871l-3.08 8.21m7.93-12.985A9.252 9.252 0 0 0 4.6 6.45m15.858 1.8q.085.19.161.386a9.25 9.25 0 0 1-8.09 12.599m0 0A9.25 9.25 0 0 1 2.75 12c0-2.083.688-4.004 1.85-5.55m3.653 5.704L4.6 6.45\"/>"
},
"google-play": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m16.28 16.311l3.29-1.861A2.79 2.79 0 0 0 21 12c0-.955-.476-1.91-1.43-2.45l-3.29-1.86m0 8.622L8.209 20.88a2.8 2.8 0 0 1-2.779 0a2.9 2.9 0 0 1-.7-.557m11.552-4.012L4.729 3.677m0 16.646A2.78 2.78 0 0 1 4 18.43V5.57a2.78 2.78 0 0 1 1.061-2.202a2.81 2.81 0 0 1 3.147-.248l8.073 4.569M4.729 20.323L16.281 7.69\"/>"
},
"graph": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M3.5 4v13.5a3 3 0 0 0 3 3H20\"/><path d=\"m6.5 15l4.5-4.5l3.5 3.5L20 8.5\"/></g>"
},
"grid": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"6.5\" height=\"6.5\" x=\"3.75\" y=\"13.75\" rx=\"2\"/><rect width=\"6.5\" height=\"6.5\" x=\"13.75\" y=\"13.75\" rx=\"2\"/><rect width=\"6.5\" height=\"6.5\" x=\"3.75\" y=\"3.75\" rx=\"2\"/><rect width=\"6.5\" height=\"6.5\" x=\"13.75\" y=\"3.75\" rx=\"2\"/></g>"
},
"grid-dots": {
"body": "<g fill=\"currentColor\"><circle cx=\"5\" cy=\"5\" r=\"1.5\"/><circle cx=\"12\" cy=\"5\" r=\"1.5\"/><circle cx=\"19\" cy=\"5\" r=\"1.5\"/><circle cx=\"5\" cy=\"12\" r=\"1.5\"/><circle cx=\"12\" cy=\"12\" r=\"1.5\"/><circle cx=\"19\" cy=\"12\" r=\"1.5\"/><circle cx=\"5\" cy=\"19\" r=\"1.5\"/><circle cx=\"12\" cy=\"19\" r=\"1.5\"/><circle cx=\"19\" cy=\"19\" r=\"1.5\"/></g>"
},
"hamburger": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12 3.724c-4.302 0-7.79 3.051-7.79 6.816h15.58c0-3.765-3.488-6.816-7.79-6.816\"/><rect width=\"18.5\" height=\"5.355\" x=\"2.75\" y=\"10.54\" rx=\"2\"/><path d=\"M4.21 15.895h15.58l-.278 1.249a4 4 0 0 1-3.905 3.132H8.393a4 4 0 0 1-3.905-3.132zm10.926-2.833l-2.162-2.522h5.842l-2.162 2.522a1 1 0 0 1-1.518 0\"/></g>"
},
"hand": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M4 10.059v3.424c0 1.853 0 2.78.221 3.536c.527 1.8 1.935 3.216 3.735 3.846c.6.176 1.196.363 2.344.532a5.8 5.8 0 0 0 2.014-.066c.303-.062.55-.115.758-.16c.49-.106.98-.233 1.43-.454c.508-.248.903-.506 1.475-.933c.342-.255.655-.566 1.28-1.188l3.247-3.23a1.68 1.68 0 0 0 0-2.384a1.7 1.7 0 0 0-2.396 0l-2.25 2.239v-5.162\"/><path d=\"M12.893 7.852V5.95c0-.815.664-1.475 1.483-1.475c.818 0 1.482.66 1.482 1.475v4.424m-5.929-.319V3.95c0-.815.664-1.475 1.482-1.475c.819 0 1.482.66 1.482 1.475v6.109M6.964 7.32v2.739v-5.104a1.483 1.483 0 0 1 2.965 0v5.104M6.964 8.854V7.95c0-.815-.663-1.475-1.482-1.475C4.664 6.475 4 7.135 4 7.95v2.738\"/></g>"
},
"hard-drive": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 16.75v2.5a2 2 0 0 1-2 2H4.75a2 2 0 0 1-2-2v-2.5m18.5 0a2 2 0 0 0-2-2H4.75a2 2 0 0 0-2 2m18.5 0v-1.63a3 3 0 0 0-.09-.728l-2.342-9.37a3 3 0 0 0-2.91-2.272H8.092a3 3 0 0 0-2.91 2.272l-2.342 9.37a3 3 0 0 0-.09.727v1.631\"/><circle cx=\"18\" cy=\"18\" r=\"1\" fill=\"currentColor\"/></g>"
},
"hash": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.778 8.395H21.25m-18.5 7.21h17.472M6.282 21.13L9.495 2.87m5.01 18.26l3.212-18.26\"/>"
},
"hat-graduation": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.652 14.714V9.78m3.18 2.07l4.049 2.667a4 4 0 0 0 4.402 0l4.049-2.668m-12.5 0L3.099 10.05a.99.99 0 0 1-.45-.815m3.183 2.616v5.061c0 .495.119.987.44 1.364c.747.877 2.514 2.39 5.81 2.39s5.063-1.513 5.81-2.39c.32-.377.44-.869.44-1.364V11.85m0 0l2.48-1.634a1.2 1.2 0 0 0 0-2.004l-6.53-4.302a4 4 0 0 0-4.401 0L3.099 8.379a.99.99 0 0 0-.45.855m0 0v.547\"/>"
},
"headphones": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M21.25 17.368V12A9.25 9.25 0 0 0 12 2.75v0A9.25 9.25 0 0 0 2.75 12v5.368\"/><path d=\"M2.75 13.321h4a1.5 1.5 0 0 1 1.5 1.5v4.429a2 2 0 0 1-2 2h-1.5a2 2 0 0 1-2-2zm13 1.5a1.5 1.5 0 0 1 1.5-1.5h4v5.929a2 2 0 0 1-2 2h-1.5a2 2 0 0 1-2-2z\"/></g>"
},
"headphones-off": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M17.75 21.25h1.5c.276 0 .54-.056.78-.158l-4.28-4.279v2.437a2 2 0 0 0 2 2\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M21.25 13.321V12A9.25 9.25 0 0 0 7.217 4.08m14.033 9.241h-4a1.5 1.5 0 0 0-1.5 1.5v1.992m5.5-3.492v4.765m-18.5-.718V12c0-2.284.828-4.374 2.2-5.988m10.8 10.801v2.437a2 2 0 0 0 2 2h1.5c.276 0 .54-.056.78-.158m-4.28-4.279l4.28 4.28m-4.28-4.28l-10.8-10.8m0 0L2.217 3.28m18.5 18.5l-.689-.689M2.75 13.322h4a1.5 1.5 0 0 1 1.5 1.5v4.428a2 2 0 0 1-2 2h-1.5a2 2 0 0 1-2-2z\"/></g>"
},
"heart": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.087 6.477a4.565 4.565 0 0 1 6.456 0L12 7.934l1.457-1.457a4.565 4.565 0 0 1 6.456 6.457l-1.457 1.456l.013.013l-6.456 6.457l-.013-.013l-.013.013l-6.456-6.457l.013-.013l-1.457-1.456a4.565 4.565 0 0 1 0-6.457Z\"/>"
},
"heart-stylistic": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m12 7.934l-1.457-1.457a4.565 4.565 0 1 0-6.456 6.457l1.457 1.456M12 7.934l1.457-1.457a4.565 4.565 0 0 1 6.456 6.457l-1.457 1.456l.013.013l-6.456 6.457l-.013-.013l-.013.013l-6.456-6.457l.013-.013M12 7.934L5.544 14.39\"/>"
},
"hexagon": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.42 3.173a3.16 3.16 0 0 1 3.16 0l5.275 3.046a3.16 3.16 0 0 1 1.579 2.735v6.092a3.16 3.16 0 0 1-1.58 2.735l-5.275 3.046a3.16 3.16 0 0 1-3.158 0L5.145 17.78a3.16 3.16 0 0 1-1.579-2.735V8.954c0-1.128.602-2.17 1.58-2.735z\"/>"
},
"highlighter": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.75 2.75v3.5a3.5 3.5 0 0 0 3.5 3.5h9.5a3.5 3.5 0 0 0 3.5-3.5v-3.5m-14.5 7h12.5v1.8a2.2 2.2 0 0 1-2.2 2.2h-8.1a2.2 2.2 0 0 1-2.2-2.2zm10.5 4h-8.5v5.663a1.3 1.3 0 0 0 1.733 1.226l5.433-1.918a2 2 0 0 0 1.334-1.886z\"/>"
},
"highlighter-accent": {
"body": "<path fill=\"currentColor\" d=\"M20.25 6.25v-3.5H3.75v3.5a3.5 3.5 0 0 0 3.5 3.5h9.5a3.5 3.5 0 0 0 3.5-3.5m-4 7.5h-8.5v5.663a1.3 1.3 0 0 0 1.733 1.226l5.433-1.918a2 2 0 0 0 1.334-1.886z\"/>"
},
"history": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M11.25 7.75v5h3\"/><path d=\"M4.855 7.875a8.25 8.25 0 1 1-.824 6.26m-.176-5.26v-4.75m0 4.75h4.75\"/></g>"
},
"home": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.29 20.663h3.017a2.194 2.194 0 0 0 2.193-2.194v-6.454a3.3 3.3 0 0 0-1.13-2.48l-5.93-5.166a2.194 2.194 0 0 0-2.88 0L4.63 9.534a3.3 3.3 0 0 0-1.13 2.481v6.454c0 1.212.982 2.194 2.194 2.194h3.29m6.306 0v-6.581c0-.908-.736-1.645-1.645-1.645H10.63c-.909 0-1.645.737-1.645 1.645v6.581m6.306 0H8.984\"/>"
},
"home-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M20.71 18.65v-7.622a3 3 0 0 0-1.151-2.362l-6.326-4.951a2 2 0 0 0-2.466 0l-6.326 4.95a3 3 0 0 0-1.15 2.363v7.622c0 1.16.94 2.1 2.1 2.1h3.97v-7.965h5.278v7.965h3.97a2.1 2.1 0 0 0 2.1-2.1\"/>"
},
"hourglass": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"m4.095 3.298l15.81-.048m-15.81 17.5l15.81-.048\"/><path d=\"M18.426 3.31H5.574l.079 1.449a7.38 7.38 0 0 0 2.251 4.913l1.242 1.195a1.58 1.58 0 0 1 0 2.279L7.904 14.34a7.38 7.38 0 0 0-2.251 4.913l-.08 1.448h12.853l-.079-1.445a7.38 7.38 0 0 0-2.256-4.917l-1.242-1.194a1.58 1.58 0 0 1 0-2.28l1.242-1.193a7.38 7.38 0 0 0 2.256-4.918z\"/></g>"
},
"html": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m20.754 4.792l-2.84 14.31a1.5 1.5 0 0 1-1.099 1.161l-4.442 1.141a1.5 1.5 0 0 1-.746 0l-4.442-1.14a1.5 1.5 0 0 1-1.098-1.162L3.246 4.792A1.5 1.5 0 0 1 4.717 3h14.566a1.5 1.5 0 0 1 1.471 1.792\"/><path d=\"M17.3 6.881H8.944a1 1 0 0 0-.987 1.16l.577 3.576a1 1 0 0 0 .987.841h5.374a1 1 0 0 1 .978 1.205l-.562 2.683a1 1 0 0 1-.653.74l-2.283.786a1 1 0 0 1-.66-.003L8.99 16.9\"/></g>"
},
"infinity": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.872 9.172a3.72 3.72 0 0 1 5.419 0L12 12l-2.71 2.828a3.72 3.72 0 0 1-5.418 0c-1.496-1.562-1.496-4.094 0-5.656Zm16.256 0a3.72 3.72 0 0 0-5.419 0L12 12l2.71 2.828a3.72 3.72 0 0 0 5.418 0c1.496-1.562 1.496-4.094 0-5.656Z\"/>"
},
"info": {
"body": "<g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M12 11.813v5\"/><circle cx=\"12\" cy=\"8.438\" r=\"1.25\" fill=\"currentColor\"/></g>"
},
"instagram": {
"body": "<g fill=\"none\"><rect width=\"17\" height=\"17\" x=\"3.5\" y=\"3.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"5.5\"/><circle cx=\"12\" cy=\"12\" r=\"3.606\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/><circle cx=\"16.894\" cy=\"7.106\" r=\"1.03\" fill=\"currentColor\"/></g>"
},
"javascript": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" rx=\"2\"/><path d=\"M11.5 11.25v5a1 1 0 0 1-1 1H9m8.25-6h-2a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2\"/></g>"
},
"keyboard": {
"body": "<g fill=\"none\"><rect width=\"18.5\" height=\"13.5\" x=\"2.75\" y=\"5.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"3\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8 15.38h8\"/><circle cx=\"7.5\" cy=\"8.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"10.5\" cy=\"8.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"13.5\" cy=\"8.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"16.5\" cy=\"8.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"7.5\" cy=\"11.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"10.5\" cy=\"11.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"13.5\" cy=\"11.875\" r=\"1\" fill=\"currentColor\"/><circle cx=\"16.5\" cy=\"11.875\" r=\"1\" fill=\"currentColor\"/></g>"
},
"keyboard-command": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 5.751a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v3h-3a3 3 0 0 1-3-3m0 12.498a3 3 0 0 0 3 3v0a3 3 0 0 0 3-3v-3h-3a3 3 0 0 0-3 3m18.5-12.498a3 3 0 0 0-3-3v0a3 3 0 0 0-3 3v3h3a3 3 0 0 0 3-3m0 12.498a3 3 0 0 1-3 3v0a3 3 0 0 1-3-3v-3h3a3 3 0 0 1 3 3M8.75 8.751h6.5v6.5h-6.5z\"/>"
},
"keyboard-shift": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m3.503 11.913l6.601-8.252a2.428 2.428 0 0 1 3.792 0l6.6 8.251c.83 1.037.092 2.573-1.235 2.573h-4.095v3.725c0 1.064 0 1.596-.207 2.003a1.9 1.9 0 0 1-.83.83c-.406.207-.938.207-2.002.207h-.254c-1.064 0-1.596 0-2.002-.207a1.9 1.9 0 0 1-.83-.83c-.207-.407-.207-.939-.207-2.003v-3.725H4.739c-1.327 0-2.065-1.536-1.236-2.572\"/>"
},
"laptop": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M4.75 7a2 2 0 0 1 2-2h10.5a2 2 0 0 1 2 2v9H4.75zm-2 10a1 1 0 0 1 1-1h16.5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4.75a2 2 0 0 1-2-2z\"/>"
},
"layers": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M12.991 3.066a2 2 0 0 0-1.982 0L2.75 7.778l8.259 4.712a2 2 0 0 0 1.982 0l8.259-4.712z\"/><path stroke-linecap=\"round\" d=\"m2.75 12l7.268 4.147a4 4 0 0 0 3.964 0L21.25 12\"/><path stroke-linecap=\"round\" d=\"m2.75 16.222l7.268 4.147a4 4 0 0 0 3.964 0l7.268-4.147\"/></g>"
},
"layout": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 8.75v8a3 3 0 0 0 3 3H10m-7.25-11v-1.5a3 3 0 0 1 3-3h12.5a3 3 0 0 1 3 3v1.5m-18.5 0H10m11.25 0v8a3 3 0 0 1-3 3H10m11.25-11H10m0 0v11\"/>"
},
"leaf": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.508 16.223a6.38 6.38 0 0 1-9.016 0a6.367 6.367 0 0 1 0-9.009l3.094-3.091a2 2 0 0 1 2.828 0l3.094 3.091a6.367 6.367 0 0 1 0 9.01M12 12.265v9.025\"/>"
},
"leaf-three": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.526 7.499a4.75 4.75 0 0 1 4.75-4.75h2.217c.887 0 1.33 0 1.669.172c.298.152.54.394.692.692c.172.339.172.782.172 1.669v2.217c0 .433-.058.853-.167 1.252m-10.716 2.84l2.3 2.301m5.624 1.288l-6.071 6.071M12.012 9.81a6.03 6.03 0 0 1 3.423-1.059h2.424M12.012 9.81a4.85 4.85 0 0 0-4.163-2.361H5.586c-.905 0-1.358 0-1.704.176a1.6 1.6 0 0 0-.706.706C3 8.677 3 9.13 3 10.035v2.262a4.85 4.85 0 0 0 6.7 4.483m2.312-6.97a6.1 6.1 0 0 0-1.54 1.523a6 6 0 0 0-1.029 2.56M17.86 8.75h.404c1.132 0 1.698 0 2.13.22c.38.194.689.503.883.884c.22.432.22.997.22 2.129v2.828A6.06 6.06 0 0 1 9.7 16.78m-.258-2.888A6.1 6.1 0 0 0 9.7 16.78\"/>"
},
"leaf-two": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m7.35 8.1l1.93 1.93m5.277 3.663L8 20.25m4.872-13.162a6.5 6.5 0 0 1 2.082-.338h3.055c1.222 0 1.833 0 2.3.238c.41.209.744.543.953.953c.238.467.238 1.078.238 2.3v3.055a6.546 6.546 0 0 1-13.062.625m4.434-6.833a5.09 5.09 0 0 0-4.78-3.338H5.714c-.95 0-1.425 0-1.788.185a1.7 1.7 0 0 0-.742.742C3 5.04 3 5.515 3 6.465v2.376a5.09 5.09 0 0 0 5.438 5.08m4.434-6.833A6.57 6.57 0 0 0 9.28 10.03m-.842 3.89a6.5 6.5 0 0 1 .842-3.89\"/>"
},
"library": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"3.998\" height=\"15\" x=\"2.75\" y=\"4.504\" rx=\"1.5\"/><rect width=\"3.998\" height=\"15\" x=\"9.201\" y=\"4.504\" rx=\"1.5\"/><path d=\"M15.267 8.378c-.165-.615.2-1.247.814-1.411l1.038-.278c.614-.165 1.245.2 1.41.814l2.681 10.014a1.15 1.15 0 0 1-.814 1.41l-1.038.279a1.15 1.15 0 0 1-1.41-.815z\"/></g>"
},
"lightbulb": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.013 17.104c.126-.958.736-1.764 1.464-2.4a6.816 6.816 0 1 0-8.955 0c.729.636 1.34 1.442 1.465 2.4l.084.633l.233 1.774a2 2 0 0 0 1.983 1.739h1.426a2 2 0 0 0 1.983-1.739l.233-1.774zm-5.943.633h5.86\"/>"
},
"line-diagonal": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"m21.25 2.75l-18.5 18.5\"/>"
},
"link": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.621 7.5H7.25a4.5 4.5 0 0 0-4.5 4.5v0a4.5 4.5 0 0 0 4.5 4.5h2.371m4.758-9h2.371a4.5 4.5 0 0 1 4.5 4.5v0a4.5 4.5 0 0 1-4.5 4.5h-2.371M7.243 12h9.514\"/>"
},
"linux": {
"body": "<g fill=\"currentColor\"><rect width=\"1.48\" height=\"1.48\" x=\"12.671\" y=\"5.713\" rx=\".74\"/><rect width=\"1.48\" height=\"1.48\" x=\"10.38\" y=\"5.713\" rx=\".74\"/><path d=\"m17.06 11.837l-.603.445zm-9.59 0l.604.445zm2.223 9.204l.65.375zm-2.354.828l.271-.699zm1.894-3.28l.47-.586zm-3.339-1.66l.65.375zm1.03-.193l.47-.585zm-2.691 3.071l-.65-.375zm.347.99l-.272.698zm10.823.946l-.375.65zm-.828-2.354l-.699-.272zm3.281 1.894l-.585-.47zm1.659-3.339l-.375.65zm.193 1.03l.585.47zm-3.071-2.692l-.375.65zm-.989.348l.7.272zm-5.835 4.166l-.696-.28zm-3.377-4.21l.062.748zm8.016 3.671l.747-.068zM9.95 20.1l.75.006zm-.738-1.528l-.469.585zm.597-1.214c0-.955.32-2.128.842-3.05c.551-.975 1.16-1.397 1.615-1.397v-1.5c-1.316 0-2.311 1.082-2.92 2.158c-.639 1.128-1.037 2.553-1.037 3.789zm0-11.152c0-1.356 1.1-2.456 2.457-2.456v-1.5a3.956 3.956 0 0 0-3.957 3.956zm0 1.954V6.206h-1.5V8.16zm-2.748 7.208c0-1.157.376-2.223 1.013-3.086l-1.207-.89a6.68 6.68 0 0 0-1.306 3.976zm9.396-3.086a5.18 5.18 0 0 1 1.013 3.086h1.5a6.68 6.68 0 0 0-1.305-3.977zm-1.735-6.076V8.16h1.5V6.206zM12.266 3.75c1.356 0 2.456 1.1 2.456 2.456h1.5a3.956 3.956 0 0 0-3.956-3.956zm5.399 7.641c-.815-1.104-1.443-2.139-1.443-3.23h-1.5c0 1.635.93 3.03 1.735 4.12zm-9.356-3.23c0 1.091-.628 2.127-1.442 3.23l1.207.89c.805-1.09 1.735-2.485 1.735-4.12zm-3.427 12.02l1.662-2.878l-1.3-.75l-1.661 2.878zm2.728.988l-2.758-1.073l-.544 1.398l2.759 1.073zm1.434-.504a1.166 1.166 0 0 1-1.434.504l-.543 1.398a2.67 2.67 0 0 0 3.276-1.152zm-5.461-1.234a1.44 1.44 0 0 0 .725 2.063l.544-1.398a.06.06 0 0 1 .03.085zm15.54-.927l-1.852 2.308l1.17.94l1.852-2.31zm-1.852 2.308c-.36.45-.994.569-1.493.28l-.75 1.3c1.14.658 2.59.386 3.413-.64zm1.869-2.22a.06.06 0 0 1-.017-.088l1.17.939a1.44 1.44 0 0 0-.403-2.15zm-2.128-2.96a1.44 1.44 0 0 0-2.063.725l1.398.544a.06.06 0 0 1-.085.03zm-1.234 5.46a1.16 1.16 0 0 1-.487-.545l-1.376.597c.22.509.602.952 1.113 1.248zm-1.47-.936a5.2 5.2 0 0 1-2.042.415v1.5c.932 0 1.823-.19 2.632-.536zm-5.191.36a1 1 0 0 1-.073.15l1.299.75q.096-.168.166-.342zm3.149.055a5.2 5.2 0 0 1-2.144-.46l-.618 1.367a6.7 6.7 0 0 0 2.762.593zM7.17 16.434a5.2 5.2 0 0 1-.11-1.066h-1.5c0 .469.05.928.141 1.371zm-.626.87a.1.1 0 0 1-.021.021l-.025.009l-.124-1.495a1.44 1.44 0 0 0-1.13.715zm-.046.03a.06.06 0 0 1-.043-.013l.939-1.17a1.44 1.44 0 0 0-1.02-.312zm10.972-1.966c0 .514-.074 1.009-.212 1.476l1.439.425a6.7 6.7 0 0 0 .273-1.901zm-1.208 1.564l1.34.774l.75-1.3l-1.34-.773zm1.34.774l1.538.887l.75-1.299l-1.538-.887zm-2.328 1.954l.89-2.289l-1.397-.544l-.89 2.29zm.89-2.289l.183-.469l-1.398-.544l-.182.47zm-3.898-4.46c.435 0 1.014.385 1.554 1.293c.513.861.85 1.977.896 2.932l1.499-.073c-.06-1.206-.471-2.56-1.106-3.626c-.608-1.021-1.576-2.026-2.843-2.026zm3.025 7.637a1.2 1.2 0 0 1-.092-.36l-1.493.138c.026.283.097.56.209.819zm-.092-.36a1.2 1.2 0 0 1 .075-.528l-1.398-.543a2.66 2.66 0 0 0-.17 1.209zm-6.436-1.015c.287.23.44.572.437.92l1.5.013a2.67 2.67 0 0 0-.998-2.103zm.437.92a1.2 1.2 0 0 1-.083.423l1.392.559c.126-.314.188-.642.191-.969zm.738-1.71a4 4 0 0 1-.129-1.025h-1.5c0 .486.062.958.177 1.403zm-3.483-1.062l2.288 1.836l.939-1.17l-2.288-1.836zm2.288 1.836l.02.016l.94-1.17l-.021-.016zM11.08 8.272a.6.6 0 0 0-.46.984l1.185 1.423a.6.6 0 0 0 .922 0l1.185-1.423a.6.6 0 0 0-.46-.984z\"/></g>"
},
"location": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M6.4 4.76a7.92 7.92 0 0 1 11.2 11.2l-4.186 4.186a2 2 0 0 1-2.828 0L6.4 15.96a7.92 7.92 0 0 1 0-11.2Z\"/><circle cx=\"12\" cy=\"10.36\" r=\"3\" stroke-linecap=\"round\"/></g>"
},
"lock": {
"body": "<g fill=\"none\"><rect width=\"14.478\" height=\"12.87\" x=\"4.761\" y=\"8.38\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"3\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.217 8.38V5.967A3.217 3.217 0 0 0 12 2.75v0a3.217 3.217 0 0 0-3.217 3.217V8.38\"/><circle cx=\"12\" cy=\"14.815\" r=\"1.5\" fill=\"currentColor\"/></g>"
},
"lock-open": {
"body": "<g fill=\"none\"><rect width=\"14.478\" height=\"12.87\" x=\"4.761\" y=\"8.38\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"3\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.783 8.38V5.967a3.217 3.217 0 0 1 6.132-1.363\"/><circle cx=\"12\" cy=\"14.815\" r=\"1.5\" fill=\"currentColor\"/></g>"
},
"mail": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"18.5\" height=\"15.5\" x=\"2.75\" y=\"4.25\" rx=\"3\"/><path d=\"m2.75 8l8.415 3.866a2 2 0 0 0 1.67 0L21.25 8\"/></g>"
},
"mail-open": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"m20.59 8.949l-7.755 3.562a2 2 0 0 1-1.67 0L3.41 8.95m14.84 11.3H5.75a3 3 0 0 1-3-3v-7.215A2.5 2.5 0 0 1 3.93 7.91l7.014-4.36a2 2 0 0 1 2.112 0l7.014 4.36a2.5 2.5 0 0 1 1.18 2.124v7.215a3 3 0 0 1-3 3\"/>"
},
"map": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.496 4.439L4.247 6.91a1 1 0 0 0-.497.864V18.26a1 1 0 0 0 1.503.865l3.243-1.887a1.5 1.5 0 0 1 1.508 0l3.992 2.322a1.5 1.5 0 0 0 1.508 0l4.249-2.472a1 1 0 0 0 .497-.864V5.739a1 1 0 0 0-1.503-.865l-3.243 1.887a1.5 1.5 0 0 1-1.508 0L10.004 4.44a1.5 1.5 0 0 0-1.508 0Zm.754.311v11.8m5.5-9.1v11.8\"/>"
},
"mask": {
"body": "<g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"/><path fill=\"currentColor\" d=\"M8.844 20.698a9.254 9.254 0 0 1 0-17.396a9.254 9.254 0 0 1 0 17.396\"/></g>"
},
"math": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M2.75 6.248h7m-3.5-3.5v7m8-3.5h7M3.45 20.552l2.8-2.8m0 0l2.8-2.8m-2.8 2.8l-2.8-2.8m2.8 2.8l2.8 2.8m5.2-4.9h7m-7 4.2h7\"/>"
},
"megaphone": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" d=\"m7.142 15.9l-2.5-.627a2.5 2.5 0 0 1-1.892-2.425V10.78a2.5 2.5 0 0 1 1.891-2.424l13.5-3.39a2.5 2.5 0 0 1 3.109 2.425v8.847a2.5 2.5 0 0 1-3.109 2.425l-5.19-1.304m-5.81-1.458a3 3 0 1 0 5.809 1.459M7.143 15.9l5.809 1.46\"/>"
},
"megaphone-loud": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"m8.784 19.283l-1.251.75c-.632.378-.948.568-1.272.637c-.44.094-.897.037-1.3-.16c-.298-.147-.558-.408-1.08-.93c-.52-.52-.781-.781-.927-1.079a2 2 0 0 1-.16-1.3c.068-.325.258-.642.636-1.274l4.356-7.282c.718-1.2 1.077-1.8 1.57-2.061c.433-.23.935-.291 1.41-.175c.544.133 1.038.628 2.026 1.617l2.636 2.638c.988.989 1.482 1.483 1.616 2.026c.116.476.054.979-.175 1.412c-.261.494-.86.853-2.06 1.572l-1.27.761m-4.755 2.848a2.778 2.778 0 0 0 4.463.744a2.784 2.784 0 0 0 .291-3.592m-4.754 2.848l4.754-2.848\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M20.007 4.404L17.542 6.87m3.709 3.007h-2.49m-4.224-6.719V5.65\"/></g>"
},
"mention": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M16.625 20.01A9.25 9.25 0 1 1 21.25 12v1.5a2.5 2.5 0 0 1-2.5 2.5v0a2.5 2.5 0 0 1-2.5-2.5V12m0 0a4.25 4.25 0 1 1-8.5 0a4.25 4.25 0 0 1 8.5 0m0 0V7.75\"/>"
},
"menu": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 4.75h18.5M2.75 12h18.5m-18.5 7.25h18.5\"/>"
},
"microphone": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M8.801 6.449a3.199 3.199 0 1 1 6.398 0v4.95a3.199 3.199 0 0 1-6.398 0zM12 18.181a6.78 6.78 0 0 1-6.779-6.779M12 18.182a6.78 6.78 0 0 0 6.779-6.78M12 18.182v2.568\"/>"
},
"microphone-off": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M12 14.597a3.2 3.2 0 0 0 3.199-3.199V9.864l-4.47 4.47c.39.17.82.263 1.271.263\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 18.181a6.78 6.78 0 0 0 6.779-6.779M12 18.182v2.568m0-2.569a6.75 6.75 0 0 1-3.89-1.227m-2.89-5.552c0 1.1.262 2.14.727 3.058m-2.666 7.322l4.827-4.828M21.782 3.282l-6.583 6.582m0 0v1.534a3.2 3.2 0 0 1-4.47 2.937m4.47-4.47l-4.47 4.47m0 0l-2.62 2.62m.734-5.035a3 3 0 0 1-.042-.522v-4.95a3.199 3.199 0 0 1 6.391-.208\"/></g>"
},
"microsoft": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 3.75H5.75a2 2 0 0 0-2 2V12M12 3.75h6.25a2 2 0 0 1 2 2V12M12 3.75v16.5m0 0h6.25a2 2 0 0 0 2-2V12M12 20.25H5.75a2 2 0 0 1-2-2V12m0 0h16.5\"/>"
},
"microsoft-edge": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.76 12a9.25 9.25 0 0 0 11.527 8.968M2.761 12a9.25 9.25 0 0 1 9.25-9.25c3.795 0 7.996 1.777 9.017 6.798c.223 1.1.09 2.258-.463 3.235c-.582 1.025-1.559 2.182-3.01 2.182c-.55.088-4.164.176-3.979-1.312A2.27 2.27 0 0 0 14.287 12M2.761 12s.444-4.849 5.78-4.833C14.117 7.184 14.288 12 14.288 12m0 0a2.277 2.277 0 0 0-2.277-2.277c-.642 0-1.636.694-1.636.694m3.913 10.55a9.26 9.26 0 0 0 5.406-3.814c.185-.275.058-.694-.26-.6a.5.5 0 0 0-.174.092c-1.364.617-4.22 1.12-6.685-.257c-1.5-.838-2.374-2.135-2.639-3.202c-.099-.255-.201-.896-.201-1.186c0-.615.243-1.173.64-1.583m3.913 10.55s-6.012.49-6.546-5.053c-.297-3.09 1.307-4.702 2.633-5.497\"/>"
},
"moon": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M11.578 3.512a6.307 6.307 0 0 0 8.91 8.91a.45.45 0 0 1 .466-.095c.176.067.29.24.275.428A9.255 9.255 0 1 1 5.461 5.45a9.22 9.22 0 0 1 5.784-2.68a.42.42 0 0 1 .428.275c.06.16.02.34-.095.466Z\"/>"
},
"more": {
"body": "<g fill=\"currentColor\"><circle cx=\"6\" cy=\"12\" r=\"1.75\"/><circle cx=\"12\" cy=\"12\" r=\"1.75\"/><circle cx=\"18\" cy=\"12\" r=\"1.75\"/></g>"
},
"more-vertical": {
"body": "<g fill=\"currentColor\"><circle cx=\"12\" cy=\"18\" r=\"1.75\" transform=\"rotate(-90 12 18)\"/><circle cx=\"12\" cy=\"12\" r=\"1.75\" transform=\"rotate(-90 12 12)\"/><circle cx=\"12\" cy=\"6\" r=\"1.75\" transform=\"rotate(-90 12 6)\"/></g>"
},
"motherboard": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"13.5\" height=\"13.5\" x=\"5.25\" y=\"5.25\" rx=\"3\"/><path d=\"M18.75 8.75h2.5M18.75 12h2.5m-2.5 3.25h2.5m-6 3.5v2.5M12 18.75v2.5m-3.25-2.5v2.5m-6-12.5h2.5M2.75 12h2.5m-2.5 3.25h2.5m10-12.5v2.5M12 2.75v2.5m-3.25-2.5v2.5\"/><rect width=\"5\" height=\"5\" x=\"9.5\" y=\"9.5\" rx=\"1\"/></g>"
},
"movie": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M2.75 7.5a3 3 0 0 1 3-3h12.5a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3H5.75a3 3 0 0 1-3-3zM7 5v14M17 5v14M2.75 9.5H7m-4.25 5H7m10-5h4.25m-4.25 5h4.25\"/>"
},
"museum": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"18.5\" height=\"3\" x=\"2.75\" y=\"18.376\" rx=\"1\"/><path d=\"M11.04 3.15L3.27 7.4a1 1 0 0 0-.52.877v.997a.6.6 0 0 0 .6.6h17.3a.6.6 0 0 0 .6-.6v-.997a1 1 0 0 0-.52-.877l-7.77-4.25a2 2 0 0 0-1.92 0M5.25 9.874v8.51m13.5-8.51v8.51m-4.25-8.51v8.51m-5-8.51v8.51\"/></g>"
},
"music-note": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M8.962 17.968V6.696a1.5 1.5 0 0 1 1.106-1.447l8.15-2.223a1.5 1.5 0 0 1 1.895 1.447v11.468M8.963 9.92l11.15-3.04M8.962 17.968a3.041 3.041 0 1 1-6.082 0a3.041 3.041 0 0 1 6.082 0\"/><path d=\"M20.113 15.94a3.041 3.041 0 1 1-6.082 0a3.041 3.041 0 0 1 6.082 0\"/></g>"
},
"music-note-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12.5 17.25a4 4 0 1 1-8 0a4 4 0 0 1 8 0m0 0v-9m0 0l4.83 2.415a1.5 1.5 0 0 0 2.17-1.342V7.177a1.5 1.5 0 0 0-.83-1.342l-4.723-2.361a1 1 0 0 0-1.447.894z\"/>"
},
"narrator": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M7.183 16.958h.75a.75.75 0 0 0-.75-.75zm.839 4.16l.508.552zm4.52-4.16v-.75a.75.75 0 0 0-.508.199zM3.839 6.75A3.25 3.25 0 0 1 7.09 3.5V2a4.75 4.75 0 0 0-4.75 4.75zm0 6.208V6.75h-1.5v6.208zm3.25 3.25a3.25 3.25 0 0 1-3.25-3.25h-1.5a4.75 4.75 0 0 0 4.75 4.75zm.072 0H7.09v1.5h.072zm.022 0h-.022v1.5h.022zm.75 4.542v-3.792h-1.5v3.792zm-.419-.184a.25.25 0 0 1 .42.184h-1.5c0 1.09 1.295 1.657 2.096.92zm4.52-4.16l-4.52 4.16L8.53 21.67l4.52-4.16zm4.877-.198h-4.37v1.5h4.37zm3.25-3.25a3.25 3.25 0 0 1-3.25 3.25v1.5a4.75 4.75 0 0 0 4.75-4.75zm0-6.208v6.208h1.5V6.75zM16.91 3.5a3.25 3.25 0 0 1 3.25 3.25h1.5A4.75 4.75 0 0 0 16.91 2zm-9.822 0h9.822V2H7.089z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 14V6m3.25 5.788V8.212m-6.5 3.576V8.212\"/></g>"
},
"nodejs": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M9.75 8.5v7.964c0 .866-.456 1.626-1.142 2.052c-.745.463-1.672.13-2.432-.308l-1.43-.826a2.07 2.07 0 0 1-1.034-1.792V8.41c0-.74.394-1.423 1.035-1.792l6.218-3.59a2.07 2.07 0 0 1 2.07 0l6.218 3.59a2.07 2.07 0 0 1 1.035 1.792v7.18a2.07 2.07 0 0 1-1.035 1.792l-6.218 3.59a2.07 2.07 0 0 1-2.07 0l-.989-.57\"/><path d=\"M17.29 8.5h-2.75a1.75 1.75 0 0 0-1.75 1.75v0c0 .966.784 1.75 1.75 1.75h1c.966 0 1.75.784 1.75 1.75v0a1.75 1.75 0 0 1-1.75 1.75h-2.75\"/></g>"
},
"note": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M16.5 4H8a4 4 0 0 0-4 4v8.5a4 4 0 0 0 4 4h6.843a4 4 0 0 0 2.829-1.172l1.656-1.656a4 4 0 0 0 1.172-2.829V8a4 4 0 0 0-4-4\"/><path d=\"M20.5 14H17a3 3 0 0 0-3 3v3.5M8 8h7.5M8 12h5\"/></g>"
},
"note-add": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M6.5 12a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V6h2.493a.5.5 0 0 1 0 1H7v2.493a.5.5 0 1 1-1 0V7H3.507a.5.5 0 0 1 0-1H6V3.507a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M20.5 14h-1.7c-1.68 0-2.52 0-3.162.327a3 3 0 0 0-1.311 1.311C14 16.28 14 17.12 14 18.8v1.7M15.5 8H14m-2.5 4H13m.75-8h.35c2.24 0 3.36 0 4.216.436a4 4 0 0 1 1.748 1.748c.436.856.436 1.976.436 4.216v3.449c0 .978 0 1.468-.11 1.928c-.099.408-.26.798-.48 1.156c-.247.404-.593.75-1.285 1.442l-.25.25c-.692.692-1.038 1.038-1.442 1.286a4 4 0 0 1-1.156.479c-.46.11-.95.11-1.928.11H10.4c-2.24 0-3.36 0-4.216-.436a4 4 0 0 1-1.748-1.748C4 17.46 4 16.34 4 14.1v-.35\"/></g>"
},
"npm": {
"body": "<g fill=\"none\"><rect width=\"16.5\" height=\"16.5\" x=\"3.75\" y=\"3.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" rx=\"2\"/><path fill=\"currentColor\" d=\"M12 9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v11.25h-4z\"/></g>"
},
"octagon": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.29 3.629a3 3 0 0 1 2.12-.879h5.178a3 3 0 0 1 2.121.879l3.661 3.66a3 3 0 0 1 .879 2.122v5.178a3 3 0 0 1-.879 2.121l-3.66 3.661a3 3 0 0 1-2.122.879H9.41a3 3 0 0 1-2.121-.879l-3.661-3.66a3 3 0 0 1-.879-2.122V9.41a3 3 0 0 1 .879-2.121z\"/>"
},
"open": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.25 3.75h-2.5a4 4 0 0 0-4 4v8.5a4 4 0 0 0 4 4h8.5a4 4 0 0 0 4-4v-2.5m-6.5-10h5.5c.276 0 .526.112.707.293m.293 6.207v-5.5a1 1 0 0 0-.293-.707M12.75 11.25l6.5-6.5l.707-.707\"/>"
},
"open-source": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.157 20.136c.211.51.8.757 1.284.492a9.25 9.25 0 1 0-8.882 0c.484.265 1.073.018 1.284-.492l1.358-3.28c.212-.51-.043-1.086-.478-1.426a3.7 3.7 0 1 1 4.554 0c-.435.34-.69.916-.478 1.426z\"/>"
},
"page-margins": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"15.5\" height=\"18.5\" x=\"4.25\" y=\"2.75\" rx=\"2.5\"/><path d=\"M8.25 2.75v18.5m-4-14.5h15.5m-15.5 10.5h15.5m-4-14.5v18.5\"/></g>"
},
"paint-bucket": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m18.677 13.35l-1.923 3.17c-.985 2.093 1.314 4.206 3.317 3.05a2.36 2.36 0 0 0 .864-3.225z\"/><path stroke-linecap=\"round\" d=\"m8.778 3.558l6.972 6.972M8.778 3.558L4.38 7.956c-.901.9-1.352 1.351-1.52 1.87a2.3 2.3 0 0 0-.112.704m6.03-6.972l-1.06-1.059m8.032 8.031l-4.398 4.398c-.9.9-1.351 1.351-1.871 1.52c-.457.149-.95.149-1.406 0c-.52-.169-.97-.62-1.871-1.52L4.38 13.104c-.901-.9-1.352-1.351-1.52-1.87a2.3 2.3 0 0 1-.112-.704m13.002 0H2.748m10.188 9.971H3.748\"/></g>"
},
"paint-bucket-accent": {
"body": "<path fill=\"currentColor\" d=\"m18.677 13.35l-1.923 3.17c-.985 2.092 1.314 4.206 3.317 3.05a2.36 2.36 0 0 0 .864-3.225zm-7.325 1.578l4.398-4.398H2.748c0 .237.037.475.112.703c.168.52.619.97 1.52 1.871l1.824 1.824c.9.9 1.351 1.351 1.87 1.52c.458.149.95.149 1.407 0c.52-.169.97-.62 1.871-1.52\"/>"
},
"paintbrush": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M5.32 5.75a3 3 0 0 1 3-3h7.36a3 3 0 0 1 3 3V12H5.32z\"/><path fill=\"currentColor\" d=\"M5.32 12v-.75a.75.75 0 0 0-.75.75zm13.36 0h.75a.75.75 0 0 0-.75-.75zm-8.479 4.111h.75a.75.75 0 0 0-.75-.75zm3.598 0v-.75a.75.75 0 0 0-.75.75zm-8.48-3.361h13.362v-1.5H5.319zm.75 1.861V12h-1.5v2.611zm.75.75a.75.75 0 0 1-.75-.75h-1.5a2.25 2.25 0 0 0 2.25 2.25zm3.382 0H6.82v1.5h3.382zm.75 4.09v-3.34h-1.5v3.34zM12 20.5c-.58 0-1.049-.47-1.049-1.049h-1.5A2.55 2.55 0 0 0 12 22zm1.049-1.049c0 .58-.47 1.049-1.049 1.049V22a2.55 2.55 0 0 0 2.549-2.549zm0-3.34v3.34h1.5v-3.34zm4.132-.75h-3.382v1.5h3.382zm.75-.75a.75.75 0 0 1-.75.75v1.5a2.25 2.25 0 0 0 2.25-2.25zm0-2.611v2.611h1.5V12z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M15.5 2.75V6.5m-3-3.75v2.5\"/></g>"
},
"paintbrush-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.781 10.832A4.79 4.79 0 0 0 3.75 15.46v3.79a1 1 0 0 0 1 1h3.79a4.79 4.79 0 0 0 4.628-6.03m-3.387-3.388a4.8 4.8 0 0 1 3.387 3.387m-3.387-3.387l3.19-3.19m.197 6.577l3.19-3.19m-3.387-3.387l3.19-3.19a2.395 2.395 0 0 1 3.387 3.387l-3.19 3.19m-3.387-3.387l3.387 3.387\"/>"
},
"panel-left": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.547 3.75H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h2.297m0-16.5h7.203a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5H9.547m0-16.5v16.5\"/>"
},
"panel-left-contract": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.547 3.75H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h2.297m0-16.5h7.203a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5H9.547m0-16.5v16.5m5.213-6L12.55 12m0 0l2.21-2.25M12.55 12h4.7\"/>"
},
"panel-left-expand": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.547 3.75H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h2.297m0-16.5h7.203a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5H9.547m0-16.5v16.5m5.493-6L17.25 12m0 0l-2.21-2.25M17.25 12h-4.7\"/>"
},
"panel-left-open": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M16.75 3.75a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5h-2.297V3.75z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.453 3.75h2.297a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5h-2.297m0-16.5H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h7.203m0-16.5v16.5\"/></g>"
},
"panel-right": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.453 3.75h2.297a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5h-2.297m0-16.5H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h7.203m0-16.5v16.5\"/>"
},
"panel-right-contract": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.453 3.75h2.297a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5h-2.297m0-16.5H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h7.203m0-16.5v16.5m-5.213-6L11.45 12m0 0L9.24 9.75M11.45 12h-4.7\"/>"
},
"panel-right-expand": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.453 3.75h2.297a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5h-2.297m0-16.5H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h7.203m0-16.5v16.5m-5.493-6L6.75 12m0 0l2.21-2.25M6.75 12h4.7\"/>"
},
"panel-right-open": {
"body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M7.25 3.75a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h2.297V3.75z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.547 3.75H7.25a3.5 3.5 0 0 0-3.5 3.5v9.5a3.5 3.5 0 0 0 3.5 3.5h2.297m0-16.5h7.203a3.5 3.5 0 0 1 3.5 3.5v9.5a3.5 3.5 0 0 1-3.5 3.5H9.547m0-16.5v16.5\"/></g>"
},
"pause": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"5\" height=\"16.5\" x=\"5\" y=\"3.75\" rx=\"2\"/><rect width=\"5\" height=\"16.5\" x=\"14\" y=\"3.75\" rx=\"2\"/></g>"
},
"pdf": {
"body": "<g fill=\"none\" stroke=\"currentColor\"><path d=\"m11.79 10.673l-.058.265a9.8 9.8 0 0 1-1.368 3.286m1.425-3.551l.467-2.136c.162-.738-.556-1.316-1.11-.894c-.297.226-.407.665-.26 1.037l.246.617q.286.719.657 1.376Zm0 0a10.4 10.4 0 0 0 2.064 2.596m0 0l2.255-.286c.632-.08 1.09.671.806 1.32c-.207.474-.721.649-1.121.382l-.851-.568a9.4 9.4 0 0 1-1.089-.848Zm0 0l-.095.013a12.3 12.3 0 0 0-3.394.942m0 0q-.626.274-1.228.618l-1.706.975c-.475.271-.577.994-.202 1.423c.332.379.88.338 1.165-.087l1.91-2.837z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M7.792 21.25h8.416a3.5 3.5 0 0 0 3.5-3.5v-5.53a3.5 3.5 0 0 0-1.024-2.475l-5.969-5.97A3.5 3.5 0 0 0 10.24 2.75H7.792a3.5 3.5 0 0 0-3.5 3.5v11.5a3.5 3.5 0 0 0 3.5 3.5\"/></g>"
},
"pdf-2": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path stroke-width=\"1.5\" d=\"M7.792 21.25h8.416a3.5 3.5 0 0 0 3.5-3.5v-5.53a3.5 3.5 0 0 0-1.024-2.475l-5.969-5.97A3.5 3.5 0 0 0 10.24 2.75H7.792a3.5 3.5 0 0 0-3.5 3.5v11.5a3.5 3.5 0 0 0 3.5 3.5\"/><path stroke-width=\"1.5\" d=\"M11.688 3.11v5.66a2 2 0 0 0 2 2h5.662\"/><path d=\"M7.25 16.5v-1m0 0v-2h1a1 1 0 0 1 1 1v0a1 1 0 0 1-1 1zm4 1v-3h.5a1.5 1.5 0 0 1 0 3zm4 0v-1.25m1.5-1.75h-1.5v1.75m0 0h1.5\"/></g>"
},
"pencil": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.44 5.78L4.198 16.02a2 2 0 0 0-.565 1.125l-.553 3.774l3.775-.553A2 2 0 0 0 7.98 19.8L18.22 9.56m-3.78-3.78l2.229-2.23a1.6 1.6 0 0 1 2.263 0l1.518 1.518a1.6 1.6 0 0 1 0 2.263l-2.23 2.23M14.44 5.78l3.78 3.78\"/>"
},
"pentagon": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M10.13 3.655a3.18 3.18 0 0 1 3.74 0l6.069 4.409a3.18 3.18 0 0 1 1.155 3.557l-2.318 7.134a3.18 3.18 0 0 1-3.025 2.198H8.249a3.18 3.18 0 0 1-3.025-2.198L2.906 11.62A3.18 3.18 0 0 1 4.06 8.063z\"/>"
},
"person": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19 20.75a1 1 0 0 0 1-1v-1.246c.004-2.806-3.974-5.004-8-5.004s-8 2.198-8 5.004v1.246a1 1 0 0 0 1 1zM15.604 6.854a3.604 3.604 0 1 1-7.208 0a3.604 3.604 0 0 1 7.208 0\"/>"
},
"person-2": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"8.196\" r=\"4.446\"/><path d=\"M19.608 20.25a7.608 7.608 0 0 0-15.216 0\"/></g>"
},
"person-add": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M14.104 6.854a3.604 3.604 0 1 1-7.208 0a3.604 3.604 0 0 1 7.208 0M10.87 20.75H3.5a1 1 0 0 1-1-1v-1.246c0-2.806 3.974-5.004 8-5.004q.387 0 .77.027\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M17.5 23a5.5 5.5 0 1 0 0-11a5.5 5.5 0 0 0 0 11m0-8.993a.5.5 0 0 1 .5.5V17h2.493a.5.5 0 1 1 0 1H18v2.494a.5.5 0 0 1-1 0V18h-2.493a.5.5 0 1 1 0-1H17v-2.493a.5.5 0 0 1 .5-.5\" clip-rule=\"evenodd\"/></g>"
},
"person-add-2": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M19.25 1.75v6m-3-3h6m-11.814 8.814a3.907 3.907 0 1 0 0-7.814a3.907 3.907 0 0 0 0 7.814m0 0a6.686 6.686 0 0 1 6.685 6.686m-6.685-6.686A6.686 6.686 0 0 0 3.75 20.25\"/>"
},
"person-circle": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M12 13.826a3.506 3.506 0 1 0 0-7.013a3.506 3.506 0 0 0 0 7.013m0 0a6 6 0 0 1 5.953 5.254M12 13.826a6 6 0 0 0-5.953 5.254m0 0A9.2 9.2 0 0 0 12 21.25a9.2 9.2 0 0 0 5.953-2.17m-11.906 0a9.25 9.25 0 1 1 11.907 0\"/>"
},
"person-multiple": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M13.322 7.209c0 .749-.237 1.442-.64 2.009a3.42 3.42 0 0 1-2.796 1.45c-1.898 0-3.436-1.55-3.436-3.46S7.988 3.75 9.886 3.75a3.445 3.445 0 0 1 3.436 3.459M2.75 18.107c0-2.677 3.545-4.774 7.136-4.774c1.432 0 2.857.333 4.053.904c1.803.86 3.084 2.26 3.082 3.87v1.143a1 1 0 0 1-1 1H3.75a1 1 0 0 1-1-1zM15.172 3.75a3.445 3.445 0 0 1 3.435 3.459c0 .749-.236 1.442-.639 2.009a3.42 3.42 0 0 1-2.796 1.45m3.452 2.569c1.536.86 2.628 2.763 2.626 4.373v2.64\"/>"
},
"phone": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><rect width=\"12.5\" height=\"18.5\" x=\"5.75\" y=\"2.75\" rx=\"3\"/><path d=\"M11 17.75h2\"/></g>"
},
"phone-accept": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M8.14 15.733c2.158 2.158 4.278 3.28 5.89 3.864c1.768.64 3.606-.117 4.935-1.446l.459-.458a1.5 1.5 0 0 0 0-2.122l-1.149-1.149a1.5 1.5 0 0 0-2.121 0l-.387.387a2 2 0 0 1-2.828 0l-3.713-3.712a2 2 0 0 1 0-2.829l.387-.387a1.5 1.5 0 0 0 0-2.12l-1.15-1.15a1.5 1.5 0 0 0-2.12 0l-.572.572c-1.262 1.262-2.013 2.99-1.438 4.68c.538 1.58 1.622 3.685 3.806 5.87Z\"/>"
},
"phone-hang-up": {
"body": "<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M12.116 7.953c-3.053 0-5.346.706-6.899 1.433c-1.702.797-2.467 2.632-2.467 4.512v.649a1.5 1.5 0 0 0 1.5 1.5h1.625a1.5 1.5 0 0 0 1.5-1.5V14a2 2 0 0 1 2-2h5.25a2 2 0 0 1 2 2v.547a1.5 1.5 0 0 0 1.5 1.5h1.625a1.5 1.5 0 0 0 1.5-1.5v-.81c0-1.784-.691-3.537-2.293-4.325c-1.496-.736-3.752-1.459-6.841-1.459Z\"/>"
},
"photo": {
"body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M20.33 17.657c.11-.366.17-.755.17-1.157v-9a4 4 0 0 0-4-4h-9a4 4 0 0 0-4 4v9.07m16.83 1.087l-.088-.104l-2.466-2.976a2 2 0 0 0-3.073-.008l-1.312 1.566l-.214.261m7.153 1.26a4 4 0 0 1-3.713 2.842m0 0l-.117.002h-9a4 4 0 0 1-4-3.93m13.117 3.928l-.093-.106l-3.347-3.996m-9.676.175l.177-.201l3.206-3.827a2 2 0 0 1 3.066 0l3.227 3.853\"/><circle cx=\"15.091\" cy=\"8.909\" r=\"1.5\" fill=\"currentColor\"/></g>"
},
"photo-filter": {
"body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"8.73\" r=\"5.98\"/><circle cx=\"8.729\" cy=\"15.27\" r=\"5.98\"/><circle cx=\"15.271\" cy=\"15.27\" r=\"5.98\"/></g>"