forked from iconify/icon-sets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabler.json
2891 lines (2891 loc) · 288 KB
/
tabler.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": "tabler",
"info": {
"name": "Tabler Icons",
"total": 937,
"author": {
"name": "Paweł Kuna",
"url": "https://github.com/tabler/tabler-icons"
},
"license": {
"title": "MIT",
"spdx": "MIT",
"url": "https://github.com/tabler/tabler-icons/blob/master/LICENSE"
},
"version": "1.35.0",
"samples": [
"alien",
"device-desktop",
"photo"
],
"height": 24,
"category": "General",
"palette": false
},
"icons": {
"2fa": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 16H3l3.47-4.66A2 2 0 1 0 3 9.8\"/><path d=\"M10 16V8h4\"/><path d=\"M10 12h3\"/><path d=\"M17 16v-6a2 2 0 0 1 4 0v6\"/><path d=\"M17 13h4\"/></g>"
},
"3d-cube-sphere": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 17.6l-2-1.1V14\"/><path d=\"M4 10V7.5l2-1.1\"/><path d=\"M10 4.1L12 3l2 1.1\"/><path d=\"M18 6.4l2 1.1V10\"/><path d=\"M20 14v2.5l-2 1.12\"/><path d=\"M14 19.9L12 21l-2-1.1\"/><path d=\"M12 12l2-1.1\"/><path d=\"M18 8.6l2-1.1\"/><path d=\"M12 12v2.5\"/><path d=\"M12 18.5V21\"/><path d=\"M12 12l-2-1.12\"/><path d=\"M6 8.6L4 7.5\"/></g>"
},
"a-b": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 16v-5.5a2.5 2.5 0 0 1 5 0V16m0-4H3\"/><path d=\"M12 6v12\"/><path d=\"M16 16V8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3\"/></g>"
},
"access-point": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 12v.01\"/><path d=\"M14.828 9.172a4 4 0 0 1 0 5.656\"/><path d=\"M17.657 6.343a8 8 0 0 1 0 11.314\"/><path d=\"M9.168 14.828a4 4 0 0 1 0-5.656\"/><path d=\"M6.337 17.657a8 8 0 0 1 0-11.314\"/></g>"
},
"access-point-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M14.828 9.172A4 4 0 0 1 16 12\"/><path d=\"M17.657 6.343a8 8 0 0 1 1.635 8.952\"/><path d=\"M9.168 14.828a4 4 0 0 1 0-5.656\"/><path d=\"M6.337 17.657a8 8 0 0 1 0-11.314\"/></g>"
},
"accessible": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M10 16.5l2-3l2 3m-2-3v-2l3-1m-6 0l3 1\"/><circle cx=\"12\" cy=\"7.5\" r=\".5\" fill=\"currentColor\"/></g>"
},
"activity": {
"body": "<path d=\"M3 12h4l3 8l4-16l3 8h4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"ad": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" rx=\"2\"/><path d=\"M7 15v-4a2 2 0 0 1 4 0v4\"/><path d=\"M7 13h4\"/><path d=\"M17 9v6h-1.5a1.5 1.5 0 1 1 1.5-1.5\"/></g>"
},
"adjustments": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"6\" cy=\"10\" r=\"2\"/><path d=\"M6 4v4\"/><path d=\"M6 12v8\"/><circle cx=\"12\" cy=\"16\" r=\"2\"/><path d=\"M12 4v10\"/><path d=\"M12 18v2\"/><circle cx=\"18\" cy=\"7\" r=\"2\"/><path d=\"M18 4v1\"/><path d=\"M18 9v11\"/></g>"
},
"adjustments-alt": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 8h4v4H4z\"/><path d=\"M6 4v4\"/><path d=\"M6 12v8\"/><path d=\"M10 14h4v4h-4z\"/><path d=\"M12 4v10\"/><path d=\"M12 18v2\"/><path d=\"M16 5h4v4h-4z\"/><path d=\"M18 4v1\"/><path d=\"M18 9v11\"/></g>"
},
"adjustments-horizontal": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"14\" cy=\"6\" r=\"2\"/><path d=\"M4 6h8\"/><path d=\"M16 6h4\"/><circle cx=\"8\" cy=\"12\" r=\"2\"/><path d=\"M4 12h2\"/><path d=\"M10 12h10\"/><circle cx=\"17\" cy=\"18\" r=\"2\"/><path d=\"M4 18h11\"/><path d=\"M19 18h1\"/></g>"
},
"alarm": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"13\" r=\"7\"/><path d=\"M12 10v3h2\"/><path d=\"M7 4L4.25 6\"/><path d=\"M17 4l2.75 2\"/></g>"
},
"alert-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M12 8v4\"/><path d=\"M12 16h.01\"/></g>"
},
"alert-octagon": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8.7 3h6.6c.3 0 .5.1.7.3L20.7 8c.2.2.3.4.3.7v6.6c0 .3-.1.5-.3.7L16 20.7c-.2.2-.4.3-.7.3H8.7c-.3 0-.5-.1-.7-.3L3.3 16c-.2-.2-.3-.4-.3-.7V8.7c0-.3.1-.5.3-.7L8 3.3c.2-.2.4-.3.7-.3z\"/><path d=\"M12 8v4\"/><path d=\"M12 16h.01\"/></g>"
},
"alert-triangle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 9v2m0 4v.01\"/><path d=\"M5 19h14a2 2 0 0 0 1.84-2.75L13.74 4a2 2 0 0 0-3.5 0l-7.1 12.25A2 2 0 0 0 4.89 19\"/></g>"
},
"alien": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 17a2.5 2.5 0 0 0 2 0\"/><path d=\"M12 3C7.336 3 4.604 5.331 4.138 8.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199-3.064a11.89 11.89 0 0 0 2-8.592C19.4 5.33 16.668 3 12.004 3z\"/><path d=\"M8 11l2 2\"/><path d=\"M16 11l-2 2\"/></g>"
},
"align-center": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 6h16\"/><path d=\"M8 12h8\"/><path d=\"M6 18h12\"/></g>"
},
"align-justified": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 6h16\"/><path d=\"M4 12h16\"/><path d=\"M4 18h12\"/></g>"
},
"align-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 6h16\"/><path d=\"M4 12h10\"/><path d=\"M4 18h14\"/></g>"
},
"align-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 6h16\"/><path d=\"M10 12h10\"/><path d=\"M6 18h14\"/></g>"
},
"ambulance": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"7\" cy=\"17\" r=\"2\"/><circle cx=\"17\" cy=\"17\" r=\"2\"/><path d=\"M5 17H3V6a1 1 0 0 1 1-1h9v12m-4 0h6m4 0h2v-6h-8m0-5h5l3 5\"/><path d=\"M6 10h4M8 8v4\"/></g>"
},
"anchor": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 9v12m-8-8a8 8 0 0 0 16 0m1 0h-2M5 13H3\"/><circle cx=\"12\" cy=\"6\" r=\"3\"/></g>"
},
"antenna-bars-1": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 18v.01\"/><path d=\"M10 18v.01\"/><path d=\"M14 18v.01\"/><path d=\"M18 18v.01\"/></g>"
},
"antenna-bars-2": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 18v-3\"/><path d=\"M10 18v.01\"/><path d=\"M14 18v.01\"/><path d=\"M18 18v.01\"/></g>"
},
"antenna-bars-3": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 18v-3\"/><path d=\"M10 18v-6\"/><path d=\"M14 18v.01\"/><path d=\"M18 18v.01\"/></g>"
},
"antenna-bars-4": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 18v-3\"/><path d=\"M10 18v-6\"/><path d=\"M14 18V9\"/><path d=\"M18 18v.01\"/></g>"
},
"antenna-bars-5": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 18v-3\"/><path d=\"M10 18v-6\"/><path d=\"M14 18V9\"/><path d=\"M18 18V6\"/></g>"
},
"aperture": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M3.6 15h10.55\"/><path d=\"M6.551 4.938l3.26 10.034\"/><path d=\"M17.032 4.636l-8.535 6.2\"/><path d=\"M20.56 14.51l-8.536-6.2\"/><path d=\"M12.257 20.916l3.26-10.034\"/></g>"
},
"apps": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"6\" height=\"6\" rx=\"1\"/><rect x=\"4\" y=\"14\" width=\"6\" height=\"6\" rx=\"1\"/><rect x=\"14\" y=\"14\" width=\"6\" height=\"6\" rx=\"1\"/><path d=\"M14 7h6\"/><path d=\"M17 4v6\"/></g>"
},
"archive": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"4\" width=\"18\" height=\"4\" rx=\"2\"/><path d=\"M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8\"/><path d=\"M10 12h4\"/></g>"
},
"arrow-back": {
"body": "<path d=\"M9 11l-4 4l4 4m-4-4h11a4 4 0 0 0 0-8h-1\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"arrow-back-up": {
"body": "<path d=\"M9 13L5 9l4-4M5 9h11a4 4 0 0 1 0 8h-1\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"arrow-bar-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 20V10\"/><path d=\"M12 20l4-4\"/><path d=\"M12 20l-4-4\"/><path d=\"M4 4h16\"/></g>"
},
"arrow-bar-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 12h10\"/><path d=\"M4 12l4 4\"/><path d=\"M4 12l4-4\"/><path d=\"M20 4v16\"/></g>"
},
"arrow-bar-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 12H10\"/><path d=\"M20 12l-4 4\"/><path d=\"M20 12l-4-4\"/><path d=\"M4 4v16\"/></g>"
},
"arrow-bar-to-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 20h16\"/><path d=\"M12 14V4\"/><path d=\"M12 14l4-4\"/><path d=\"M12 14l-4-4\"/></g>"
},
"arrow-bar-to-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10 12h10\"/><path d=\"M10 12l4 4\"/><path d=\"M10 12l4-4\"/><path d=\"M4 4v16\"/></g>"
},
"arrow-bar-to-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M14 12H4\"/><path d=\"M14 12l-4 4\"/><path d=\"M14 12l-4-4\"/><path d=\"M20 4v16\"/></g>"
},
"arrow-bar-to-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 10v10\"/><path d=\"M12 10l4 4\"/><path d=\"M12 10l-4 4\"/><path d=\"M4 4h16\"/></g>"
},
"arrow-bar-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 4v10\"/><path d=\"M12 4l4 4\"/><path d=\"M12 4L8 8\"/><path d=\"M4 20h16\"/></g>"
},
"arrow-bottom-bar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 3v18\"/><path d=\"M9 18l3 3l3-3\"/><path d=\"M9 3h6\"/></g>"
},
"arrow-bottom-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 7v14\"/><path d=\"M9 18l3 3l3-3\"/><circle cx=\"12\" cy=\"5\" r=\"2\"/></g>"
},
"arrow-bottom-square": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 7v14\"/><path d=\"M9 18l3 3l3-3\"/><path d=\"M14 3v4h-4V3z\"/></g>"
},
"arrow-bottom-tail": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 6v15\"/><path d=\"M9 18l3 3l3-3\"/><path d=\"M9 3l3 3l3-3\"/></g>"
},
"arrow-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 5v14\"/><path d=\"M18 13l-6 6\"/><path d=\"M6 13l6 6\"/></g>"
},
"arrow-down-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M8 12l4 4\"/><path d=\"M12 8v8\"/><path d=\"M16 12l-4 4\"/></g>"
},
"arrow-down-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 7L7 17\"/><path d=\"M16 17H7V8\"/></g>"
},
"arrow-down-left-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M15 9l-6 6\"/><path d=\"M15 15H9V9\"/></g>"
},
"arrow-down-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 7l10 10\"/><path d=\"M17 8v9H8\"/></g>"
},
"arrow-down-right-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M15 15H9\"/><path d=\"M15 9v6L9 9\"/></g>"
},
"arrow-forward": {
"body": "<path d=\"M15 11l4 4l-4 4m4-4H8a4 4 0 0 1 0-8h1\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"arrow-forward-up": {
"body": "<path d=\"M15 13l4-4l-4-4m4 4H8a4 4 0 0 0 0 8h1\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"arrow-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 12h14\"/><path d=\"M5 12l6 6\"/><path d=\"M5 12l6-6\"/></g>"
},
"arrow-left-bar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 12H3\"/><path d=\"M6 9l-3 3l3 3\"/><path d=\"M21 9v6\"/></g>"
},
"arrow-left-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 12H3\"/><path d=\"M6 9l-3 3l3 3\"/><circle cx=\"19\" cy=\"12\" r=\"2\"/></g>"
},
"arrow-left-square": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 12H3\"/><path d=\"M6 9l-3 3l3 3\"/><path d=\"M21 14h-4v-4h4z\"/></g>"
},
"arrow-left-tail": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M18 12H3\"/><path d=\"M6 9l-3 3l3 3\"/><path d=\"M21 9l-3 3l3 3\"/></g>"
},
"arrow-loop-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M13 21V8a4 4 0 1 1 4 4H4\"/><path d=\"M7 15l-3-3l3-3\"/></g>"
},
"arrow-loop-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 21V8a4 4 0 1 0-4 4h13\"/><path d=\"M18 15l3-3l-3-3\"/></g>"
},
"arrow-narrow-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 5v14\"/><path d=\"M16 15l-4 4\"/><path d=\"M8 15l4 4\"/></g>"
},
"arrow-narrow-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 12h14\"/><path d=\"M5 12l4 4\"/><path d=\"M5 12l4-4\"/></g>"
},
"arrow-narrow-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 12h14\"/><path d=\"M15 16l4-4\"/><path d=\"M15 8l4 4\"/></g>"
},
"arrow-narrow-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 5v14\"/><path d=\"M16 9l-4-4\"/><path d=\"M8 9l4-4\"/></g>"
},
"arrow-ramp-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 3v8.707\"/><path d=\"M13 7l4-4l4 4\"/><path d=\"M7 14l-4-4l4-4\"/><path d=\"M17 21A11 11 0 0 0 6 10H3\"/></g>"
},
"arrow-ramp-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 3v8.707\"/><path d=\"M11 7L7 3L3 7\"/><path d=\"M17 14l4-4l-4-4\"/><path d=\"M7 21a11 11 0 0 1 11-11h3\"/></g>"
},
"arrow-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 12h14\"/><path d=\"M13 18l6-6\"/><path d=\"M13 6l6 6\"/></g>"
},
"arrow-right-bar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M18 15l3-3l-3-3\"/><path d=\"M3 12h18\"/><path d=\"M3 9v6\"/></g>"
},
"arrow-right-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M18 15l3-3l-3-3\"/><circle cx=\"5\" cy=\"12\" r=\"2\"/><path d=\"M7 12h14\"/></g>"
},
"arrow-right-square": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 12h14\"/><path d=\"M18 15l3-3l-3-3\"/><path d=\"M3 10h4v4H3z\"/></g>"
},
"arrow-right-tail": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M18 15l3-3l-3-3\"/><path d=\"M3 15l3-3l-3-3\"/><path d=\"M6 12h15\"/></g>"
},
"arrow-top-bar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 21V3\"/><path d=\"M15 6l-3-3l-3 3\"/><path d=\"M9 21h6\"/></g>"
},
"arrow-top-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 17V3\"/><path d=\"M15 6l-3-3l-3 3\"/><circle cx=\"12\" cy=\"19\" r=\"2\"/></g>"
},
"arrow-top-square": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 17V3\"/><path d=\"M15 6l-3-3l-3 3\"/><path d=\"M10 21v-4h4v4z\"/></g>"
},
"arrow-top-tail": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 18V3\"/><path d=\"M15 6l-3-3l-3 3\"/><path d=\"M15 21l-3-3l-3 3\"/></g>"
},
"arrow-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 5v14\"/><path d=\"M18 11l-6-6\"/><path d=\"M6 11l6-6\"/></g>"
},
"arrow-up-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M12 8l-4 4\"/><path d=\"M12 8v8\"/><path d=\"M16 12l-4-4\"/></g>"
},
"arrow-up-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 7l10 10\"/><path d=\"M16 7H7v9\"/></g>"
},
"arrow-up-left-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M9 9l6 6\"/><path d=\"M15 9H9v6\"/></g>"
},
"arrow-up-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 7L7 17\"/><path d=\"M8 7h9v9\"/></g>"
},
"arrow-up-right-circle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M15 9l-6 6\"/><path d=\"M15 15V9H9\"/></g>"
},
"arrow-wave-left-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 13.998H3v-4\"/><path d=\"M21 11.998c-.887 1.284-2.48 2.033-4 2c-1.52.033-3.113-.716-4-2s-2.48-2.033-4-2c-1.52-.033-3 1-4 2l-2 2\"/></g>"
},
"arrow-wave-left-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 9.996H3v4\"/><path d=\"M21 11.996c-.887-1.285-2.48-2.033-4-2c-1.52-.033-3.113.715-4 2c-.887 1.284-2.48 2.033-4 2c-1.52.033-3-1-4-2l-2-2\"/></g>"
},
"arrow-wave-right-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 13.998h4v-4\"/><path d=\"M3 11.998c.887 1.284 2.48 2.033 4 2c1.52.033 3.113-.716 4-2s2.48-2.033 4-2c1.52-.033 3 1 4 2l2 2\"/></g>"
},
"arrow-wave-right-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 10h4v4\"/><path d=\"M3 12c.887-1.284 2.48-2.033 4-2c1.52-.033 3.113.716 4 2s2.48 2.033 4 2c1.52.033 3-1 4-2l2-2\"/></g>"
},
"arrows-diagonal": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 4h4v4\"/><path d=\"M14 10l6-6\"/><path d=\"M8 20H4v-4\"/><path d=\"M4 20l6-6\"/></g>"
},
"arrows-diagonal-2": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 20h4v-4\"/><path d=\"M14 14l6 6\"/><path d=\"M8 4H4v4\"/><path d=\"M4 4l6 6\"/></g>"
},
"arrows-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 21V3\"/><path d=\"M20 18l-3 3l-3-3\"/><path d=\"M4 18l3 3l3-3\"/><path d=\"M17 21V3\"/></g>"
},
"arrows-down-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 3v18\"/><path d=\"M10 18l-3 3l-3-3\"/><path d=\"M7 21V3\"/><path d=\"M20 6l-3-3l-3 3\"/></g>"
},
"arrows-horizontal": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 8l-4 4l4 4\"/><path d=\"M17 8l4 4l-4 4\"/><path d=\"M3 12h18\"/></g>"
},
"arrows-join": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 7h5l3.5 5H21\"/><path d=\"M3 17h5l3.495-5\"/><path d=\"M18 15l3-3l-3-3\"/></g>"
},
"arrows-join-2": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 7h1.948c1.913 0 3.705.933 4.802 2.5a5.861 5.861 0 0 0 4.802 2.5H21\"/><path d=\"M3 17h1.95a5.854 5.854 0 0 0 4.798-2.5a5.854 5.854 0 0 1 4.798-2.5H20\"/><path d=\"M18 15l3-3l-3-3\"/></g>"
},
"arrows-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 7h18\"/><path d=\"M6 20l-3-3l3-3\"/><path d=\"M6 4L3 7l3 3\"/><path d=\"M3 17h18\"/></g>"
},
"arrows-left-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 17H3\"/><path d=\"M6 10L3 7l3-3\"/><path d=\"M3 7h18\"/><path d=\"M18 20l3-3l-3-3\"/></g>"
},
"arrows-maximize": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 4h4v4\"/><path d=\"M14 10l6-6\"/><path d=\"M8 20H4v-4\"/><path d=\"M4 20l6-6\"/><path d=\"M16 20h4v-4\"/><path d=\"M14 14l6 6\"/><path d=\"M8 4H4v4\"/><path d=\"M4 4l6 6\"/></g>"
},
"arrows-minimize": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 9h4V5\"/><path d=\"M3 3l6 6\"/><path d=\"M5 15h4v4\"/><path d=\"M3 21l6-6\"/><path d=\"M19 9h-4V5\"/><path d=\"M15 9l6-6\"/><path d=\"M19 15h-4v4\"/><path d=\"M15 15l6 6\"/></g>"
},
"arrows-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 17H3\"/><path d=\"M18 4l3 3l-3 3\"/><path d=\"M18 20l3-3l-3-3\"/><path d=\"M21 7H3\"/></g>"
},
"arrows-right-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 7H3\"/><path d=\"M18 10l3-3l-3-3\"/><path d=\"M6 20l-3-3l3-3\"/><path d=\"M3 17h18\"/></g>"
},
"arrows-sort": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 9l4-4l4 4M7 5v14\"/><path d=\"M21 15l-4 4l-4-4m4 4V5\"/></g>"
},
"arrows-split": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 17h-8l-3.5-5H3\"/><path d=\"M21 7h-8l-3.495 5\"/><path d=\"M18 10l3-3l-3-3\"/><path d=\"M18 20l3-3l-3-3\"/></g>"
},
"arrows-split-2": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M21 17h-5.397a5 5 0 0 1-4.096-2.133l-.514-.734A5 5 0 0 0 6.897 12H3\"/><path d=\"M21 7h-5.395a5 5 0 0 0-4.098 2.135l-.51.73A5 5 0 0 1 6.9 12H3\"/><path d=\"M18 10l3-3l-3-3\"/><path d=\"M18 20l3-3l-3-3\"/></g>"
},
"arrows-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 3v18\"/><path d=\"M4 6l3-3l3 3\"/><path d=\"M20 6l-3-3l-3 3\"/><path d=\"M7 3v18\"/></g>"
},
"arrows-up-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 3v18\"/><path d=\"M10 6L7 3L4 6\"/><path d=\"M20 18l-3 3l-3-3\"/><path d=\"M17 21V3\"/></g>"
},
"arrows-vertical": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 7l4-4l4 4\"/><path d=\"M8 17l4 4l4-4\"/><path d=\"M12 3v18\"/></g>"
},
"artboard": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" rx=\"1\"/><path d=\"M3 8h1\"/><path d=\"M3 16h1\"/><path d=\"M8 3v1\"/><path d=\"M16 3v1\"/><path d=\"M20 8h1\"/><path d=\"M20 16h1\"/><path d=\"M8 20v1\"/><path d=\"M16 20v1\"/></g>"
},
"aspect-ratio": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" rx=\"2\"/><path d=\"M7 12V9h3\"/><path d=\"M17 12v3h-3\"/></g>"
},
"at": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"4\"/><path d=\"M16 12v1.5a2.5 2.5 0 0 0 5 0V12a9 9 0 1 0-5.5 8.28\"/></g>"
},
"atom": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 12v.01\"/><path d=\"M19.071 4.929a4 10 45 0 0-9.9 4.243a4 10 45 0 0-4.242 9.9a4 10 45 0 0 9.9-4.244a4 10 45 0 0 4.242-9.9\"/><path d=\"M4.929 4.929a10 4 45 0 0 4.243 9.9a10 4 45 0 0 9.9 4.242a10 4 45 0 0-4.244-9.9a10 4 45 0 0-9.9-4.242\"/></g>"
},
"atom-2": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"3\"/><path d=\"M12 21v.01\"/><path d=\"M3 9v.01\"/><path d=\"M21 9v.01\"/><path d=\"M8 20.1A9 9 0 0 1 3 13\"/><path d=\"M16 20.1a9 9 0 0 0 5-7.1\"/><path d=\"M6.2 5a9 9 0 0 1 11.4 0\"/></g>"
},
"award": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"9\" r=\"6\"/><path d=\"M12.002 15.003l3.4 5.89L17 17.66l3.598.232l-3.4-5.889\"/><path d=\"M6.802 12.003l-3.4 5.89L7 17.66l1.598 3.232l3.4-5.889\"/></g>"
},
"backhoe": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"4\" cy=\"17\" r=\"2\"/><circle cx=\"13\" cy=\"17\" r=\"2\"/><path d=\"M13 19H4\"/><path d=\"M4 15h9\"/><path d=\"M8 12V7h2a3 3 0 0 1 3 3v5\"/><path d=\"M5 15v-2a1 1 0 0 1 1-1h7\"/><path d=\"M21.12 9.88L18 5l-5 5\"/><path d=\"M21.12 9.88A3 3 0 0 1 19 15a3 3 0 0 1-2.12-.88l4.24-4.24z\"/></g>"
},
"backspace": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 6a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H9l-5-5a1.5 1.5 0 0 1 0-2l5-5z\"/><path d=\"M12 10l4 4m0-4l-4 4\"/></g>"
},
"ball-basketball": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M5.65 5.65l12.7 12.7\"/><path d=\"M5.65 18.35l12.7-12.7\"/><path d=\"M12 3a9 9 0 0 0 9 9\"/><path d=\"M3 12a9 9 0 0 1 9 9\"/></g>"
},
"ball-bowling": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M11 9v.01\"/><path d=\"M15 8v.01\"/><path d=\"M14 12v.01\"/></g>"
},
"ball-tennis": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M6 5.3a9 9 0 0 1 0 13.4\"/><path d=\"M18 5.3a9 9 0 0 0 0 13.4\"/></g>"
},
"ball-volleyball": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M12 12a8 8 0 0 0 8 4M7.5 13.5A12 12 0 0 0 16 20\"/><path d=\"M12 12a8 8 0 0 0-7.464 4.928m8.415-9.575a12 12 0 0 0-9.88 4.111\"/><path d=\"M12 12a8 8 0 0 0-.536-8.928m4.085 12.075a12 12 0 0 0 1.38-10.611\"/></g>"
},
"ban": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M5.7 5.7l12.6 12.6\"/></g>"
},
"bandage": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M14 12v.01\"/><path d=\"M10 12v.01\"/><path d=\"M12 10v.01\"/><path d=\"M12 14v.01\"/><path d=\"M4.5 12.5l8-8a4.94 4.94 0 0 1 7 7l-8 8a4.94 4.94 0 0 1-7-7\"/></g>"
},
"barcode": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 7V6a2 2 0 0 1 2-2h2\"/><path d=\"M4 17v1a2 2 0 0 0 2 2h2\"/><path d=\"M16 4h2a2 2 0 0 1 2 2v1\"/><path d=\"M16 20h2a2 2 0 0 0 2-2v-1\"/><path d=\"M5 11h1v2H5z\"/><path d=\"M10 11v2\"/><path d=\"M14 11h1v2h-1z\"/><path d=\"M19 11v2\"/></g>"
},
"basket": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 10l5-6l5 6\"/><path d=\"M21 10l-2 8a2 2.5 0 0 1-2 2H7a2 2.5 0 0 1-2-2l-2-8z\"/><circle cx=\"12\" cy=\"15\" r=\"2\"/></g>"
},
"battery": {
"body": "<path d=\"M6 7h11a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"battery-1": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 7h11a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><path d=\"M7 10v4\"/></g>"
},
"battery-2": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 7h11a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><path d=\"M7 10v4\"/><path d=\"M10 10v4\"/></g>"
},
"battery-3": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 7h11a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><path d=\"M7 10v4\"/><path d=\"M10 10v4\"/><path d=\"M13 10v4\"/></g>"
},
"battery-4": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 7h11a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><path d=\"M7 10v4\"/><path d=\"M10 10v4\"/><path d=\"M13 10v4\"/><path d=\"M16 10v4\"/></g>"
},
"battery-charging": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 7h1a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-2 2h-2\"/><path d=\"M8 7H6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1\"/><path d=\"M12 8l-2 4h3l-2 4\"/></g>"
},
"battery-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M11 7h6a2 2 0 0 1 2 2v.5a.5.5 0 0 0 .5.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5a.5.5 0 0 0-.5.5v.5m-2 2H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1\"/></g>"
},
"bed": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 7v11m0-4h18m0 4v-8a2 2 0 0 0-2-2h-8v6\"/><circle cx=\"7\" cy=\"10\" r=\"1\"/></g>"
},
"bell": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3H4a4 4 0 0 0 2-3v-3a7 7 0 0 1 4-6\"/><path d=\"M9 17v1a3 3 0 0 0 6 0v-1\"/></g>"
},
"bell-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M17 17H4a4 4 0 0 0 2-3v-3a7 7 0 0 1 1.279-3.716M9.351 5.35c.209-.127.425-.244.649-.35a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3\"/><path d=\"M9 17v1a3 3 0 0 0 6 0v-1\"/></g>"
},
"bell-ringing": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3H4a4 4 0 0 0 2-3v-3a7 7 0 0 1 4-6\"/><path d=\"M9 17v1a3 3 0 0 0 6 0v-1\"/><path d=\"M21 6.727A11.05 11.05 0 0 0 18.206 3\"/><path d=\"M3 6.727A11.05 11.05 0 0 1 5.792 3\"/></g>"
},
"bike": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"5\" cy=\"18\" r=\"3\"/><circle cx=\"19\" cy=\"18\" r=\"3\"/><path d=\"M12 19v-4l-3-3l5-4l2 3h3\"/><circle cx=\"17\" cy=\"5\" r=\"1\"/></g>"
},
"biohazard": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"2\"/><path d=\"M11.939 14c0 .173.048.351.056.533v.217a4.75 4.75 0 0 1-4.533 4.745h-.217m-4.75-4.75a4.75 4.75 0 0 1 7.737-3.693m6.513 8.443a4.75 4.75 0 0 1-4.69-5.503h-.06m1.764-2.944a4.75 4.75 0 0 1 7.731 3.477v.217m-11.195-3.813a4.75 4.75 0 0 1-1.828-7.624l.164-.172m6.718 0a4.75 4.75 0 0 1-1.665 7.798\"/></g>"
},
"bluetooth": {
"body": "<path d=\"M7 8l10 8l-5 4V4l5 4l-10 8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"bluetooth-connected": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 8l10 8l-5 4V4l5 4l-10 8\"/><path d=\"M4 12h1\"/><path d=\"M18 12h1\"/></g>"
},
"bluetooth-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M16.438 16.45L12 20v-8m0-4V4l5 4l-2.776 2.22m-2.222 1.779l-5 4\"/></g>"
},
"bold": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 5h6a3.5 3.5 0 0 1 0 7H7z\"/><path d=\"M13 12h1a3.5 3.5 0 0 1 0 7H7v-7\"/></g>"
},
"bolt": {
"body": "<path d=\"M13 3v7h6l-8 11v-7H5l8-11\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"bolt-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M15.212 15.21L11 21v-7H5l3.79-5.21m1.685-2.32L13 3v6m1 1h5l-2.104 2.893\"/></g>"
},
"bone": {
"body": "<path d=\"M15 3a3 3 0 0 1 3 3a3 3 0 1 1-2.12 5.122l-4.758 4.758a3 3 0 1 1-5.117 2.297L6 18l-.176-.005a3 3 0 1 1 2.298-5.115l4.758-4.758A3 3 0 0 1 15 3z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"book": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0\"/><path d=\"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0\"/><path d=\"M3 6v13\"/><path d=\"M12 6v13\"/><path d=\"M21 6v13\"/></g>"
},
"bookmark": {
"body": "<path d=\"M9 4h6a2 2 0 0 1 2 2v14l-5-3l-5 3V6a2 2 0 0 1 2-2\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"bookmark-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M17 17v3l-5-3l-5 3V7m1.178-2.818c.252-.113.53-.176.822-.176h6a2 2 0 0 1 2 2v7\"/></g>"
},
"bookmarks": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M13 7a2 2 0 0 1 2 2v12l-5-3l-5 3V9a2 2 0 0 1 2-2h6z\"/><path d=\"M9.265 4A2 2 0 0 1 11 3h6a2 2 0 0 1 2 2v12l-1-.6\"/></g>"
},
"border-all": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M4 12h16\"/><path d=\"M12 4v16\"/></g>"
},
"border-bottom": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 20H4\"/><path d=\"M4 4v.01\"/><path d=\"M8 4v.01\"/><path d=\"M12 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M4 8v.01\"/><path d=\"M12 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M4 12v.01\"/><path d=\"M8 12v.01\"/><path d=\"M12 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M20 12v.01\"/><path d=\"M4 16v.01\"/><path d=\"M12 16v.01\"/><path d=\"M20 16v.01\"/></g>"
},
"border-horizontal": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 12h16\"/><path d=\"M4 4v.01\"/><path d=\"M8 4v.01\"/><path d=\"M12 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M4 8v.01\"/><path d=\"M12 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M4 16v.01\"/><path d=\"M12 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M12 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"border-inner": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 12h16\"/><path d=\"M12 4v16\"/><path d=\"M4 4v.01\"/><path d=\"M8 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M4 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M4 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"border-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 20V4\"/><path d=\"M8 4v.01\"/><path d=\"M12 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M12 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M8 12v.01\"/><path d=\"M12 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M20 12v.01\"/><path d=\"M12 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M8 20v.01\"/><path d=\"M12 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"border-none": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 4v.01\"/><path d=\"M8 4v.01\"/><path d=\"M12 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M4 8v.01\"/><path d=\"M12 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M4 12v.01\"/><path d=\"M8 12v.01\"/><path d=\"M12 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M20 12v.01\"/><path d=\"M4 16v.01\"/><path d=\"M12 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M12 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"border-outer": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M12 8v.01\"/><path d=\"M8 12v.01\"/><path d=\"M12 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M12 16v.01\"/></g>"
},
"border-radius": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 12V8a4 4 0 0 1 4-4h4\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M20 8v.01\"/><path d=\"M20 12v.01\"/><path d=\"M4 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M12 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"border-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 4v16\"/><path d=\"M4 4v.01\"/><path d=\"M8 4v.01\"/><path d=\"M12 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M4 8v.01\"/><path d=\"M12 8v.01\"/><path d=\"M4 12v.01\"/><path d=\"M8 12v.01\"/><path d=\"M12 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M4 16v.01\"/><path d=\"M12 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M12 20v.01\"/><path d=\"M16 20v.01\"/></g>"
},
"border-top": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 4h16\"/><path d=\"M4 8v.01\"/><path d=\"M12 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M4 12v.01\"/><path d=\"M8 12v.01\"/><path d=\"M12 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M20 12v.01\"/><path d=\"M4 16v.01\"/><path d=\"M12 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M12 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"border-vertical": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 4v16\"/><path d=\"M4 4v.01\"/><path d=\"M8 4v.01\"/><path d=\"M16 4v.01\"/><path d=\"M20 4v.01\"/><path d=\"M4 8v.01\"/><path d=\"M20 8v.01\"/><path d=\"M4 12v.01\"/><path d=\"M8 12v.01\"/><path d=\"M16 12v.01\"/><path d=\"M20 12v.01\"/><path d=\"M4 16v.01\"/><path d=\"M20 16v.01\"/><path d=\"M4 20v.01\"/><path d=\"M8 20v.01\"/><path d=\"M16 20v.01\"/><path d=\"M20 20v.01\"/></g>"
},
"box": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 3l8 4.5v9L12 21l-8-4.5v-9L12 3\"/><path d=\"M12 12l8-4.5\"/><path d=\"M12 12v9\"/><path d=\"M12 12L4 7.5\"/></g>"
},
"braces": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 4a2 2 0 0 0-2 2v3a2 3 0 0 1-2 3a2 3 0 0 1 2 3v3a2 2 0 0 0 2 2\"/><path d=\"M17 4a2 2 0 0 1 2 2v3a2 3 0 0 0 2 3a2 3 0 0 0-2 3v3a2 2 0 0 1-2 2\"/></g>"
},
"brackets": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 4H5v16h3\"/><path d=\"M16 4h3v16h-3\"/></g>"
},
"brand-airbnb": {
"body": "<path d=\"M12 10c-2 0-3 1-3 3c0 1.5 1.494 3.535 3 5.5c1 1 1.5 1.5 2.5 2s2.5 1 4.5-.5s1.5-3.5.5-6s-2.333-5.5-5-9.5C13.666 3.5 13 3 11.997 3c-1 0-1.623.45-2.497 1.5c-2.667 4-4 7-5 9.5S3 18.5 5 20s3.5 1 4.5.5s1.5-1 2.5-2c1.506-1.965 3-4 3-5.5c0-2-1-3-3-3z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-android": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 10v6\"/><path d=\"M20 10v6\"/><path d=\"M7 9h10v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V9a5 5 0 0 1 10 0\"/><path d=\"M8 3l1 2\"/><path d=\"M16 3l-1 2\"/><path d=\"M9 18v3\"/><path d=\"M15 18v3\"/></g>"
},
"brand-apple": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 7c-3 0-4 3-4 5.5c0 3 2 7.5 4 7.5c1.088-.046 1.679-.5 3-.5c1.312 0 1.5.5 3 .5s4-3 4-5c-.028-.01-2.472-.403-2.5-3c-.019-2.17 2.416-2.954 2.5-3c-1.023-1.492-2.951-1.963-3.5-2c-1.433-.111-2.83 1-3.5 1c-.68 0-1.9-1-3-1z\"/><path d=\"M12 4a2 2 0 0 0 2-2a2 2 0 0 0-2 2\"/></g>"
},
"brand-apple-arcade": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"5\" r=\"2\"/><path d=\"M20 12.5v4.75a.734.734 0 0 1-.055.325a.704.704 0 0 1-.348.366l-5.462 2.58a4.998 4.998 0 0 1-4.27 0l-5.462-2.58a.705.705 0 0 1-.401-.691L4 12.5\"/><path d=\"M4.431 12.216l5.634-2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692.692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1-4.27 0l-5.462-2.543a.691.691 0 0 1 .028-1.27z\"/><path d=\"M12 7v6\"/></g>"
},
"brand-appstore": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M8 16l1.106-1.99m1.4-2.522L13 7\"/><path d=\"M7 14h5m2.9 0H17\"/><path d=\"M16 16l-2.51-4.518m-1.487-2.677L11 7\"/></g>"
},
"brand-behance": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 18V6h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6H3\"/><path d=\"M3 12h4.5\"/><path d=\"M14 13h7a3.5 3.5 0 0 0-7 0v2a3.5 3.5 0 0 0 6.64 1\"/><path d=\"M16 6h3\"/></g>"
},
"brand-chrome": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/><path d=\"M12 9h8.4\"/><path d=\"M14.598 13.5l-4.2 7.275\"/><path d=\"M9.402 13.5l-4.2-7.275\"/></g>"
},
"brand-codepen": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 15l9 6l9-6l-9-6l-9 6\"/><path d=\"M3 9l9 6l9-6l-9-6l-9 6\"/><path d=\"M3 9v6\"/><path d=\"M21 9v6\"/><path d=\"M12 3v6\"/><path d=\"M12 15v6\"/></g>"
},
"brand-codesandbox": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 7.5v9l-4 2.25L12 21l-4-2.25l-4-2.25v-9l4-2.25L12 3l4 2.25z\"/><path d=\"M12 12l4-2.25l4-2.25\"/><path d=\"M12 12v9\"/><path d=\"M12 12L8 9.75L4 7.5\"/><path d=\"M20 12l-4 2v4.75\"/><path d=\"M4 12l4 2v4.75\"/><path d=\"M8 5.25l4 2.25l4-2.25\"/></g>"
},
"brand-css3": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 4l-2 14.5l-6 2l-6-2L4 4z\"/><path d=\"M8.5 8h7L11 12h4l-.5 3.5l-2.5.75l-2.5-.75l-.1-.5\"/></g>"
},
"brand-deviantart": {
"body": "<path d=\"M18 3v4l-3.857 6H18v4h-6.429L9 21H6v-4l3.857-6H6V7h6.429L15 3z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-discord": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"9\" cy=\"12\" r=\"1\"/><circle cx=\"15\" cy=\"12\" r=\"1\"/><path d=\"M7.5 7.5c3.5-1 5.5-1 9 0\"/><path d=\"M7 16.5c3.5 1 6.5 1 10 0\"/><path d=\"M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833-1.667 3.5-3c.667-1.667.5-5.833-1.5-11.5c-1.457-1.015-3-1.34-4.5-1.5l-1 2.5\"/><path d=\"M8.5 17c0 1-1.356 3-1.832 3c-1.429 0-2.698-1.667-3.333-3c-.635-1.667-.476-5.833 1.428-11.5C6.151 4.485 7.545 4.16 9 4l1 2.5\"/></g>"
},
"brand-dribbble": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M9 3.6c5 6 7 10.5 7.5 16.2\"/><path d=\"M6.4 19c3.5-3.5 6-6.5 14.5-6.4\"/><path d=\"M3.1 10.75c5 0 9.814-.38 15.314-5\"/></g>"
},
"brand-edge": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20.978 11.372a9 9 0 1 0-1.593 5.773\"/><path d=\"M20.978 11.372c.21 2.993-5.034 2.413-6.913 1.486c1.392-1.6.402-4.038-2.274-3.851c-1.745.122-2.927 1.157-2.784 3.202c.28 3.99 4.444 6.205 10.36 4.79\"/><path d=\"M3.022 12.628C2.739 8.585 11.739 5.4 14.27 9.94\"/><path d=\"M12.628 20.978c-2.993.21-5.162-4.725-3.567-9.748\"/></g>"
},
"brand-facebook": {
"body": "<path d=\"M7 10v4h3v7h4v-7h3l1-4h-4V8a1 1 0 0 1 1-1h3V3h-3a5 5 0 0 0-5 5v2H7\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-figma": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"15\" cy=\"12\" r=\"3\"/><rect x=\"6\" y=\"3\" width=\"12\" height=\"6\" rx=\"3\"/><path d=\"M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3V3\"/></g>"
},
"brand-firefox": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4.028 7.82a9 9 0 1 0 12.823-3.4C15.215 3.4 13.787 3.4 12 3.4h-1.647\"/><path d=\"M4.914 9.485c-1.756-1.569-.805-5.38.109-6.17c.086.896.585 1.208 1.111 1.685c.88-.275 1.313-.282 1.867 0c.82-.91 1.694-2.354 2.628-2.093C9.547 4.648 10.559 6.64 12 7.08c-.17.975-1.484 1.913-2.76 2.686c-1.296.938-.722 1.85 0 2.234c.949.506 3.611-.995 4.545.354c-1.698.102-1.536 3.107-3.983 2.727c2.523.957 4.345.462 5.458-.34c1.965-1.52 2.879-3.542 2.879-5.557c-.014-1.398.194-2.695-1.26-4.75\"/></g>"
},
"brand-flickr": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"7\" cy=\"12\" r=\"3\"/><circle cx=\"17\" cy=\"12\" r=\"3\"/></g>"
},
"brand-foursquare": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 3h10c.644 0 1.11.696.978 1.33l-1.984 9.859A1.014 1.014 0 0 1 15 15h-2.254c-.308 0-.6.141-.793.382l-4.144 5.25C7.21 21.384 6 20.963 6 20V4c0-.564.44-1 1-1z\"/><path d=\"M12 9h5\"/></g>"
},
"brand-framer": {
"body": "<path d=\"M6 15h12L6 3h12v6H6v6l6 6v-6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-github": {
"body": "<path d=\"M9 19c-4.3 1.4-4.3-2.5-6-3m12 5v-3.5c0-1 .1-1.4-.5-2c2.8-.3 5.5-1.4 5.5-6a4.6 4.6 0 0 0-1.3-3.2a4.2 4.2 0 0 0-.1-3.2s-1.1-.3-3.5 1.3a12.3 12.3 0 0 0-6.2 0C6.5 2.8 5.4 3.1 5.4 3.1a4.2 4.2 0 0 0-.1 3.2A4.6 4.6 0 0 0 4 9.5c0 4.6 2.7 5.7 5.5 6c-.6.6-.6 1.2-.5 2V21\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-gitlab": {
"body": "<path d=\"M21 14l-9 7l-9-7L6 3l3 7h6l3-7z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-google": {
"body": "<path d=\"M17.788 5.108A9 9 0 1 0 21 12h-8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-google-drive": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 10L6 20l-3-5L9 5z\"/><path d=\"M9 15h12l-3 5H6\"/><path d=\"M15 15L9 5h6l6 10z\"/></g>"
},
"brand-google-play": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 3.71v16.58a.7.7 0 0 0 1.05.606l14.622-8.42a.55.55 0 0 0 0-.953L5.05 3.104A.7.7 0 0 0 4 3.711z\"/><path d=\"M15 9L4.5 20.5\"/><path d=\"M4.5 3.5L15 15\"/></g>"
},
"brand-html5": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 4l-2 14.5l-6 2l-6-2L4 4z\"/><path d=\"M15.5 8h-7l.5 4h6l-.5 3.5l-2.5.75l-2.5-.75l-.1-.5\"/></g>"
},
"brand-instagram": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"4\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/><path d=\"M16.5 7.5v.001\"/></g>"
},
"brand-kotlin": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 20H4V4h16\"/><path d=\"M4 20L20 4\"/><path d=\"M4 12l8-8\"/><path d=\"M12 12l8 8\"/></g>"
},
"brand-linkedin": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M8 11v5\"/><path d=\"M8 8v.01\"/><path d=\"M12 16v-5\"/><path d=\"M16 16v-3a2 2 0 0 0-4 0\"/></g>"
},
"brand-medium": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M8 9h1l3 3l3-3h1\"/><path d=\"M8 15h2\"/><path d=\"M14 15h2\"/><path d=\"M9 9v6\"/><path d=\"M15 9v6\"/></g>"
},
"brand-messenger": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 20l1.3-3.9A9 8 0 1 1 7.7 19L3 20\"/><path d=\"M8 13l3-2l2 2l3-2\"/></g>"
},
"brand-opera": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><ellipse cx=\"12\" cy=\"12\" rx=\"3\" ry=\"5\"/></g>"
},
"brand-paypal": {
"body": "<path d=\"M10 13h2.5c2.5 0 5-2.5 5-5c0-3-1.9-5-5-5H7c-.5 0-1 .5-1 1L4 18c0 .5.5 1 1 1h2.8L9 14c.1-.6.4-1 1-1zm7.5-5.8C19.2 8.2 20 10 20 12c0 2.5-2.5 4.5-5 4.5h-2.6l-.6 3.6a1 1 0 0 1-1 .8H8.1a.5.5 0 0 1-.5-.6l.2-1.4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-pinterest": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 20l4-9\"/><path d=\"M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75-1.554 3.75-4a5 5 0 1 0-9.7 1.7\"/><circle cx=\"12\" cy=\"12\" r=\"9\"/></g>"
},
"brand-pocket": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 4h14a2 2 0 0 1 2 2v6a9 9 0 0 1-18 0V6a2 2 0 0 1 2-2\"/><path d=\"M8 11l4 4l4-4\"/></g>"
},
"brand-python": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 9H5a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h3\"/><path d=\"M12 15h7a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3\"/><path d=\"M8 9V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4\"/><path d=\"M11 6v.01\"/><path d=\"M13 18v.01\"/></g>"
},
"brand-reddit": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 8c2.648 0 5.028.826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c0 3.59-4.03 6.5-9 6.5c-4.875 0-8.845-2.8-9-6.294l-1-.206a2.5 2.5 0 0 1 2.326-4.36C5.973 8.827 8.353 8 11.001 8z\"/><path d=\"M12 8l1-5l6 1\"/><circle cx=\"19\" cy=\"4\" r=\"1\"/><circle cx=\"9\" cy=\"13\" r=\".5\" fill=\"currentColor\"/><circle cx=\"15\" cy=\"13\" r=\".5\" fill=\"currentColor\"/><path d=\"M10 17c.667.333 1.333.5 2 .5s1.333-.167 2-.5\"/></g>"
},
"brand-safari": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 16l2-6l6-2l-2 6l-6 2\"/><circle cx=\"12\" cy=\"12\" r=\"9\"/></g>"
},
"brand-sketch": {
"body": "<path d=\"M3.262 10.878l8 8.789c.4.44 1.091.44 1.491 0l8-8.79c.313-.344.349-.859.087-1.243L17.303 4.44a1 1 0 0 0-.823-.436H7.554a1 1 0 0 0-.823.436l-3.54 5.192c-.263.385-.227.901.087 1.246z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-skype": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 3a9 9 0 0 1 8.603 11.65a4.5 4.5 0 0 1-5.953 5.953A9 9 0 0 1 3.397 9.35A4.5 4.5 0 0 1 9.35 3.396A8.987 8.987 0 0 1 12 3z\"/><path d=\"M8 14.5c.5 2 2.358 2.5 4 2.5c2.905 0 4-1.187 4-2.5c0-1.503-1.927-2.5-4-2.5s-4-.997-4-2.5C8 8.187 9.095 7 12 7c1.642 0 3.5.5 4 2.5\"/></g>"
},
"brand-slack": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 12V6a2 2 0 0 1 4 0v6m0-2a2 2 0 1 1 2 2h-6\"/><path d=\"M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1-2 2v-6\"/><path d=\"M12 12v6a2 2 0 0 1-4 0v-6m0 2a2 2 0 1 1-2-2h6\"/><path d=\"M12 12H6a2 2 0 0 1 0-4h6m-2 0a2 2 0 1 1 2-2v6\"/></g>"
},
"brand-snapchat": {
"body": "<path d=\"M16.882 7.842a4.882 4.882 0 0 0-9.764 0c0 4.273-.213 6.409-4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3-2 6-2c1-2.118 1-2.118 3-3c-3.906-1.709-4.118-3.845-4.118-8.118zM3 15.961c4-2.118 4-4.118 1-7.118m17 7.118c-4-2.118-4-4.118-1-7.118\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-soundcloud": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 11h1c1.38 0 3 1.274 3 3c0 1.657-1.5 3-3 3h-6V7c3 0 4.5 1.5 5 4z\"/><path d=\"M9 8v9\"/><path d=\"M6 17v-7\"/><path d=\"M3 16v-2\"/></g>"
},
"brand-spotify": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M8 11.973c2.5-1.473 5.5-.973 7.5.527\"/><path d=\"M9 15c1.5-1 4-1 5 .5\"/><path d=\"M7 9c2-1 6-2 10 .5\"/></g>"
},
"brand-steam": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16.5 5a4.5 4.5 0 1 1-.653 8.953L11.5 16.962V17a3 3 0 0 1-2.824 2.995L8.5 20a3.001 3.001 0 0 1-2.94-2.402L3 16.5V13l3.51 1.755a2.989 2.989 0 0 1 2.834-.635l2.727-3.818A4.5 4.5 0 0 1 16.5 5z\"/><circle fill=\"currentColor\" cx=\"16.5\" cy=\"9.5\" r=\"1\"/></g>"
},
"brand-tabler": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 9l3 3l-3 3\"/><path d=\"M13 15h3\"/><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"4\"/></g>"
},
"brand-tailwind": {
"body": "<path d=\"M11.667 6C9.177 6 7.623 7.222 7 9.667c.933-1.223 2.023-1.68 3.267-1.375c.71.174 1.217.68 1.778 1.24c.916.912 2 1.968 4.288 1.968c2.49 0 4.044-1.222 4.667-3.667c-.933 1.223-2.023 1.68-3.267 1.375c-.71-.174-1.217-.68-1.778-1.24C15.039 7.056 13.98 6 11.667 6zm-4 6.5c-2.49 0-4.044 1.222-4.667 3.667c.933-1.223 2.023-1.68 3.267-1.375c.71.174 1.217.68 1.778 1.24c.916.912 1.975 1.968 4.288 1.968c2.49 0 4.044-1.222 4.667-3.667c-.933 1.223-2.023 1.68-3.267 1.375c-.71-.174-1.217-.68-1.778-1.24c-.916-.912-1.975-1.968-4.288-1.968z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-telegram": {
"body": "<path d=\"M15 10l-4 4l6 6l4-16l-18 7l4 2l2 6l3-4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-tidal": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 7L9.5 9.5L12 12l2.5-2.5z\"/><path d=\"M12 14l-2.5 2.5L12 19l2.5-2.5z\"/><path d=\"M19 7l-2.5 2.5L19 12l2.5-2.5z\"/><path d=\"M5 7L2.5 9.5L5 12l2.5-2.5z\"/></g>"
},
"brand-tiktok": {
"body": "<path d=\"M9 12a4 4 0 1 0 4 4V4a5 5 0 0 0 5 5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-tinder": {
"body": "<path d=\"M18.918 8.174c2.56 4.982.501 11.656-5.38 12.626C5.836 22.487.698 13.084 6.484 7.571C6.793 7.266 7.645 6.476 8 6.222c0 .528.27 3.475 1 3.167c3 0 4-4.222 3.587-7.389c2.7 1.411 4.987 3.376 6.331 6.174z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-tumblr": {
"body": "<path d=\"M14 21h4v-4h-4v-6h4V7h-4V3h-4v1a3 3 0 0 1-3 3H6v4h4v6a4 4 0 0 0 4 4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-twitch": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 5v11a1 1 0 0 0 1 1h2v4l4-4h5.584c.266 0 .52-.105.707-.293l2.415-2.414c.187-.188.293-.442.293-.708V5a1 1 0 0 0-1-1h-14a1 1 0 0 0-1 1z\"/><path d=\"M16 8v4\"/><path d=\"M12 8v4\"/></g>"
},
"brand-twitter": {
"body": "<path d=\"M22 4.01c-1 .49-1.98.689-3 .99c-1.121-1.265-2.783-1.335-4.38-.737S11.977 6.323 12 8v1c-3.245.083-6.135-1.395-8-4c0 0-4.182 7.433 4 11c-1.872 1.247-3.739 2.088-6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58-1.04 6.522-3.723 7.651-7.742a13.84 13.84 0 0 0 .497-3.753C20.18 7.773 21.692 5.25 22 4.009z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-vimeo": {
"body": "<path d=\"M3 8.5l1 1S5.5 8.398 6 9c.509.609 1.863 7.65 2.5 9c.556 1.184 1.978 2.89 4 1.5C14.5 18 20 14 21 8c.444-2.661-1-4-2.5-4c-2 0-4.047 1.202-4.5 4c2.05-1.254 2.551 1.003 1.5 3c-1.052 2.005-2 3-2.5 3c-.49 0-.924-1.165-1.5-3.5c-.59-2.42-.5-6.5-3-6.5S3 8.5 3 8.5z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"brand-vk": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10 6h2v12c-4.5-1-8-6.5-9-12\"/><path d=\"M20 6c-1 2-3 5-5 6h-3\"/><path d=\"M20 18c-1-2-3-5-5-6\"/></g>"
},
"brand-whatsapp": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21l1.65-3.8a9 9 0 1 1 3.4 2.9L3 21\"/><path d=\"M9 10a.5.5 0 0 0 1 0V9a.5.5 0 0 0-1 0v1a5 5 0 0 0 5 5h1a.5.5 0 0 0 0-1h-1a.5.5 0 0 0 0 1\"/></g>"
},
"brand-windows": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17.8 20l-12-1.5c-1-.1-1.8-.9-1.8-1.9V7.4c0-1 .8-1.8 1.8-1.9l12-1.5c1.2-.1 2.2.8 2.2 1.9V18c0 1.2-1.1 2.1-2.2 1.9z\"/><path d=\"M12 5v14\"/><path d=\"M4 12h16\"/></g>"
},
"brand-yahoo": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 6h5\"/><path d=\"M7 18h7\"/><path d=\"M4.5 6l5.5 7v5\"/><path d=\"M10 13l6-5\"/><path d=\"M12.5 8h5\"/><path d=\"M20 11v4\"/><path d=\"M20 18v.01\"/></g>"
},
"brand-youtube": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" rx=\"4\"/><path d=\"M10 9l5 3l-5 3z\"/></g>"
},
"briefcase": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"7\" width=\"18\" height=\"13\" rx=\"2\"/><path d=\"M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"/><path d=\"M12 12v.01\"/><path d=\"M3 13a20 20 0 0 0 18 0\"/></g>"
},
"brightness": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M12 3v18\"/><path d=\"M12 9l4.65-4.65\"/><path d=\"M12 14.3l7.37-7.37\"/><path d=\"M12 19.6l8.85-8.85\"/></g>"
},
"brightness-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"3\"/><path d=\"M12 5v.01\"/><path d=\"M17 7v.01\"/><path d=\"M19 12v.01\"/><path d=\"M17 17v.01\"/><path d=\"M12 19v.01\"/><path d=\"M7 17v.01\"/><path d=\"M5 12v.01\"/><path d=\"M7 7v.01\"/></g>"
},
"brightness-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"3\"/><path d=\"M12 5V3\"/><path d=\"M17 7l1.4-1.4\"/><path d=\"M19 12h2\"/><path d=\"M17 17l1.4 1.4\"/><path d=\"M12 19v2\"/><path d=\"M7 17l-1.4 1.4\"/><path d=\"M6 12H4\"/><path d=\"M7 7L5.6 5.6\"/></g>"
},
"browser": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"1\"/><path d=\"M4 8h16\"/><path d=\"M8 4v4\"/></g>"
},
"brush": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21v-4a4 4 0 1 1 4 4H3\"/><path d=\"M21 3A16 16 0 0 0 8.2 13.2\"/><path d=\"M21 3a16 16 0 0 1-10.2 12.8\"/><path d=\"M10.6 9a9 9 0 0 1 4.4 4.4\"/></g>"
},
"bucket": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 9l-2 9a2 2.5 0 0 1-2 2H9a2 2.5 0 0 1-2-2L5 9z\"/><path d=\"M7 9a5 5 0 0 1 10 0\"/></g>"
},
"bug": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 9V8a3 3 0 0 1 6 0v1\"/><path d=\"M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1-10 0v-3a6 6 0 0 1 1-3\"/><path d=\"M3 13h4\"/><path d=\"M17 13h4\"/><path d=\"M12 20v-6\"/><path d=\"M4 19l3.35-2\"/><path d=\"M20 19l-3.35-2\"/><path d=\"M4 7l3.75 2.4\"/><path d=\"M20 7l-3.75 2.4\"/></g>"
},
"building": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M9 8h1\"/><path d=\"M9 12h1\"/><path d=\"M9 16h1\"/><path d=\"M14 8h1\"/><path d=\"M14 12h1\"/><path d=\"M14 16h1\"/><path d=\"M5 21V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16\"/></g>"
},
"building-arch": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M4 21V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v15\"/><path d=\"M9 21v-8a3 3 0 0 1 6 0v8\"/></g>"
},
"building-bank": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M3 10h18\"/><path d=\"M5 6l7-3l7 3\"/><path d=\"M4 10v11\"/><path d=\"M20 10v11\"/><path d=\"M8 14v3\"/><path d=\"M12 14v3\"/><path d=\"M16 14v3\"/></g>"
},
"building-bridge": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M6 5v14\"/><path d=\"M18 5v14\"/><path d=\"M2 15h20\"/><path d=\"M3 8a7.5 7.5 0 0 0 3-2a6.5 6.5 0 0 0 12 0a7.5 7.5 0 0 0 3 2\"/><path d=\"M12 10v5\"/></g>"
},
"building-bridge-2": {
"body": "<path d=\"M6 7h12a2 2 0 0 1 2 2v9a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2a4 4 0 0 0-8 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a2 2 0 0 1 2-2\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"building-carousel": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"6\"/><circle cx=\"5\" cy=\"8\" r=\"2\"/><circle cx=\"12\" cy=\"4\" r=\"2\"/><circle cx=\"19\" cy=\"8\" r=\"2\"/><circle cx=\"5\" cy=\"16\" r=\"2\"/><circle cx=\"19\" cy=\"16\" r=\"2\"/><path d=\"M8 22l4-10l4 10\"/></g>"
},
"building-castle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M15 19v-2a3 3 0 0 0-6 0v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5h4v3h3V5h4v3h3V5h4v14a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z\"/><path d=\"M3 11h18\"/></g>"
},
"building-church": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M10 21v-4a2 2 0 0 1 4 0v4\"/><path d=\"M10 5h4\"/><path d=\"M12 3v5\"/><path d=\"M6 21v-7m-2 2l8-8l8 8m-2-2v7\"/></g>"
},
"building-community": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 9l5 5v7H8v-4m0 4H3v-7l5-5m1 1V4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v17h-8\"/><path d=\"M13 7v.01\"/><path d=\"M17 7v.01\"/><path d=\"M17 11v.01\"/><path d=\"M17 15v.01\"/></g>"
},
"building-fortress": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 21h1a1 1 0 0 0 1-1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1-1V5l-3-2l-3 2v6h-4V5L7 3L4 5v15a1 1 0 0 0 1 1h2m8-2v1a1 1 0 0 0 1 1h2\"/><path d=\"M7 7h0v.01\"/><path d=\"M7 10h0v.01\"/><path d=\"M7 13h0v.01\"/><path d=\"M17 7h0v.01\"/><path d=\"M17 10h0v.01\"/><path d=\"M17 13h0v.01\"/></g>"
},
"building-hospital": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M5 21V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16\"/><path d=\"M9 21v-4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v4\"/><path d=\"M10 9h4\"/><path d=\"M12 7v4\"/></g>"
},
"building-lighthouse": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 3l2 3l2 15H8l2-15z\"/><path d=\"M8 9h8\"/><path d=\"M3 11l2-2l-2-2\"/><path d=\"M21 11l-2-2l2-2\"/></g>"
},
"building-monument": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8 18l2-13l2-2l2 2l2 13\"/><path d=\"M5 21v-3h14v3\"/><path d=\"M3 21h18\"/></g>"
},
"building-pavilon": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h7v-3a2 2 0 0 1 4 0v3h7\"/><path d=\"M6 21v-9\"/><path d=\"M18 21v-9\"/><path d=\"M6 12h12a3 3 0 0 0 3-3a9 8 0 0 1-9-6a9 8 0 0 1-9 6a3 3 0 0 0 3 3\"/></g>"
},
"building-skyscraper": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M5 21V7l8-4v18\"/><path d=\"M19 21V11l-6-4\"/><path d=\"M9 9v.01\"/><path d=\"M9 12v.01\"/><path d=\"M9 15v.01\"/><path d=\"M9 18v.01\"/></g>"
},
"building-store": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"/><path d=\"M3 7v1a3 3 0 0 0 6 0V7m0 1a3 3 0 0 0 6 0V7m0 1a3 3 0 0 0 6 0V7H3l2-4h14l2 4\"/><path d=\"M5 21V10.85\"/><path d=\"M19 21V10.85\"/><path d=\"M9 21v-4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v4\"/></g>"
},
"building-warehouse": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21V8l9-4l9 4v13\"/><path d=\"M13 13h4v8H7v-6h6\"/><path d=\"M13 21v-9a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3\"/></g>"
},
"bulb": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 12h1m8-9v1m8 8h1M5.6 5.6l.7.7m12.1-.7l-.7.7\"/><path d=\"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0-1 3a2 2 0 0 1-4 0a3.5 3.5 0 0 0-1-3\"/><path d=\"M9.7 17h4.6\"/></g>"
},
"bulb-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0-1 3a2 2 0 0 1-4 0a3.5 3.5 0 0 0-1-3\"/><path d=\"M9.7 17h4.6\"/></g>"
},
"buldozer": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"4\" cy=\"17\" r=\"2\"/><circle cx=\"13\" cy=\"17\" r=\"2\"/><path d=\"M18 13v6h3\"/><path d=\"M13 19H4\"/><path d=\"M4 15h9\"/><path d=\"M8 12V7h2a3 3 0 0 1 3 3v5\"/><path d=\"M5 15v-2a1 1 0 0 1 1-1h7\"/><path d=\"M18 17h-3\"/></g>"
},
"bus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"6\" cy=\"17\" r=\"2\"/><circle cx=\"18\" cy=\"17\" r=\"2\"/><path d=\"M4 17H2V6a1 1 0 0 1 1-1h14a5 7 0 0 1 5 7v5h-2m-4 0H8\"/><path d=\"M16 5l1.5 7H22\"/><path d=\"M2 10h15\"/><path d=\"M7 5v5\"/><path d=\"M12 5v5\"/></g>"
},
"calculator": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"3\" width=\"16\" height=\"18\" rx=\"2\"/><rect x=\"8\" y=\"7\" width=\"8\" height=\"3\" rx=\"1\"/><path d=\"M8 14v.01\"/><path d=\"M12 14v.01\"/><path d=\"M16 14v.01\"/><path d=\"M8 17v.01\"/><path d=\"M12 17v.01\"/><path d=\"M16 17v.01\"/></g>"
},
"calendar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"5\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M16 3v4\"/><path d=\"M8 3v4\"/><path d=\"M4 11h16\"/><path d=\"M11 15h1\"/><path d=\"M12 15v3\"/></g>"
},
"calendar-event": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"5\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M16 3v4\"/><path d=\"M8 3v4\"/><path d=\"M4 11h16\"/><path d=\"M8 15h2v2H8z\"/></g>"
},
"calendar-minus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"5\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M16 3v4\"/><path d=\"M8 3v4\"/><path d=\"M4 11h16\"/><path d=\"M10 16h4\"/></g>"
},
"calendar-plus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"5\" width=\"16\" height=\"16\" rx=\"2\"/><path d=\"M16 3v4\"/><path d=\"M8 3v4\"/><path d=\"M4 11h16\"/><path d=\"M10 16h4\"/><path d=\"M12 14v4\"/></g>"
},
"camera": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M5 7h1a2 2 0 0 0 2-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><circle cx=\"12\" cy=\"13\" r=\"3\"/></g>"
},
"camera-minus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"13\" r=\"3\"/><path d=\"M5 7h1a2 2 0 0 0 2-2a1 1 0 0 1 1-1h3m9 6v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><path d=\"M15 6h6\"/></g>"
},
"camera-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8.29 4.296A1 1 0 0 1 9 4h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v8m-1.179 2.824c-.25.113-.528.176-.821.176H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1c.292 0 .568-.062.818-.175\"/><path d=\"M10.436 10.44a3 3 0 1 0 4.126 4.122\"/><path d=\"M3 3l18 18\"/></g>"
},
"camera-plus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"13\" r=\"3\"/><path d=\"M5 7h2a2 2 0 0 0 2-2a1 1 0 0 1 1-1h2m9 7v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2\"/><path d=\"M15 6h6\"/><path d=\"M18 3v6\"/></g>"
},
"capture": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 8V6a2 2 0 0 1 2-2h2\"/><path d=\"M4 16v2a2 2 0 0 0 2 2h2\"/><path d=\"M16 4h2a2 2 0 0 1 2 2v2\"/><path d=\"M16 20h2a2 2 0 0 0 2-2v-2\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/></g>"
},
"car": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"7\" cy=\"17\" r=\"2\"/><circle cx=\"17\" cy=\"17\" r=\"2\"/><path d=\"M5 17H3v-6l2-5h9l4 5h1a2 2 0 0 1 2 2v4h-2m-4 0H9m-6-6h15m-6 0V6\"/></g>"
},
"caravan": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"11\" cy=\"17\" r=\"2\"/><path d=\"M21 17h-8\"/><path d=\"M9 17H4a1 1 0 0 1-1-1V7a2 2 0 0 1 2-2h10l4 4v8\"/><rect x=\"6\" y=\"8\" width=\"6\" height=\"4\" rx=\"1\"/></g>"
},
"cardboards": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 7v8.5A2.5 2.5 0 0 0 5.5 18h1.06a3 3 0 0 0 2.34-1.13l1.54-1.92a2 2 0 0 1 3.12 0l1.54 1.92A3 3 0 0 0 17.44 18h1.06a2.5 2.5 0 0 0 2.5-2.5V7a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z\"/><circle cx=\"8\" cy=\"11\" r=\"1\"/><circle cx=\"16\" cy=\"11\" r=\"1\"/></g>"
},
"caret-down": {
"body": "<path d=\"M6 9l6 6l6-6H6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"caret-left": {
"body": "<path d=\"M15 6l-6 6l6 6V6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"caret-right": {
"body": "<path d=\"M9 18l6-6l-6-6v12\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"caret-up": {
"body": "<path d=\"M18 15l-6-6l-6 6h12\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"cash": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"7\" y=\"9\" width=\"14\" height=\"10\" rx=\"2\"/><circle cx=\"14\" cy=\"14\" r=\"2\"/><path d=\"M17 9V7a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2\"/></g>"
},
"cast": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 19h.01\"/><path d=\"M7 19a4 4 0 0 0-4-4\"/><path d=\"M11 19a8 8 0 0 0-8-8\"/><path d=\"M15 19h3a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3H6a3 3 0 0 0-2.8 2\"/></g>"
},
"ce": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 4a8 8 0 1 0 0 16\"/><path d=\"M20 4a8 8 0 1 0 0 16\"/><path d=\"M12 12h8\"/></g>"
},
"certificate": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"15\" cy=\"15\" r=\"3\"/><path d=\"M13 17.5V22l2-1.5l2 1.5v-4.5\"/><path d=\"M10 19H5a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-1 1.73\"/><path d=\"M6 9h12\"/><path d=\"M6 12h3\"/><path d=\"M6 15h2\"/></g>"
},
"chart-area": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 19h16\"/><path d=\"M4 15l4-6l4 2l4-5l4 4v5H4\"/></g>"
},
"chart-area-line": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 19l4-6l4 2l4-5l4 4v5H4\"/><path d=\"M4 12l3-4l4 2l5-6l4 4\"/></g>"
},
"chart-bar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"12\" width=\"6\" height=\"8\" rx=\"1\"/><rect x=\"9\" y=\"8\" width=\"6\" height=\"12\" rx=\"1\"/><rect x=\"15\" y=\"4\" width=\"6\" height=\"16\" rx=\"1\"/><path d=\"M4 20h14\"/></g>"
},
"chart-bubble": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"6\" cy=\"16\" r=\"3\"/><circle cx=\"16\" cy=\"19\" r=\"2\"/><circle cx=\"14.5\" cy=\"7.5\" r=\"4.5\"/></g>"
},
"chart-candle": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"4\" y=\"6\" width=\"4\" height=\"5\" rx=\"1\"/><path d=\"M6 4v2\"/><path d=\"M6 11v9\"/><rect x=\"10\" y=\"14\" width=\"4\" height=\"5\" rx=\"1\"/><path d=\"M12 4v10\"/><path d=\"M12 19v1\"/><rect x=\"16\" y=\"5\" width=\"4\" height=\"6\" rx=\"1\"/><path d=\"M18 4v1\"/><path d=\"M18 11v9\"/></g>"
},
"chart-donut": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10 3.2A9 9 0 1 0 20.8 14a1 1 0 0 0-1-1H16a4.1 4.1 0 1 1-5-5V4a.9.9 0 0 0-1-.8\"/><path d=\"M15 3.5A9 9 0 0 1 20.5 9H16a9 9 0 0 0-1-1V3.5\"/></g>"
},
"chart-line": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 19h16\"/><path d=\"M4 15l4-6l4 2l4-5l4 4\"/></g>"
},
"chart-pie": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M10 3.2A9 9 0 1 0 20.8 14a1 1 0 0 0-1-1H13a2 2 0 0 1-2-2V4a.9.9 0 0 0-1-.8\"/><path d=\"M15 3.5A9 9 0 0 1 20.5 9H16a1 1 0 0 1-1-1V3.5\"/></g>"
},
"chart-radar": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 3l9.5 7L18 21H6L2.5 10z\"/><path d=\"M12 7.5l5.5 4L15 17H8.5l-2-5.5z\"/><path d=\"M2.5 10l9.5 3l9.5-3\"/><path d=\"M12 3v10l6 8\"/><path d=\"M6 21l6-8\"/></g>"
},
"check": {
"body": "<path d=\"M5 12l5 5L20 7\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"checkbox": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 11l3 3l8-8\"/><path d=\"M20 12v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h9\"/></g>"
},
"checks": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 12l5 5L22 7\"/><path d=\"M2 12l5 5m5-5l5-5\"/></g>"
},
"chevron-down": {
"body": "<path d=\"M6 9l6 6l6-6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-down-left": {
"body": "<path d=\"M8 8v8h8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-down-right": {
"body": "<path d=\"M16 8v8H8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-left": {
"body": "<path d=\"M15 6l-6 6l6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-right": {
"body": "<path d=\"M9 6l6 6l-6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-up": {
"body": "<path d=\"M6 15l6-6l6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-up-left": {
"body": "<path d=\"M8 16V8h8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevron-up-right": {
"body": "<path d=\"M8 8h8v8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"chevrons-down": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 7l5 5l5-5\"/><path d=\"M7 13l5 5l5-5\"/></g>"
},
"chevrons-down-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 5v8h8\"/><path d=\"M7 9v8h8\"/></g>"
},
"chevrons-down-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M13 5v8H5\"/><path d=\"M17 9v8H9\"/></g>"
},
"chevrons-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 7l-5 5l5 5\"/><path d=\"M17 7l-5 5l5 5\"/></g>"
},
"chevrons-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 7l5 5l-5 5\"/><path d=\"M13 7l5 5l-5 5\"/></g>"
},
"chevrons-up": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 11l5-5l5 5\"/><path d=\"M7 17l5-5l5 5\"/></g>"
},
"chevrons-up-left": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 15V7h8\"/><path d=\"M11 19v-8h8\"/></g>"
},
"chevrons-up-right": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 7h8v8\"/><path d=\"M5 11h8v8\"/></g>"
},
"christmas-tree": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12 3l4 4l-2 1l4 4l-3 1l4 4H5l4-4l-3-1l4-4l-2-1z\"/><path d=\"M14 17v3a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-3\"/></g>"
},
"circle": {
"body": "<circle cx=\"12\" cy=\"12\" r=\"9\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"circle-check": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M9 12l2 2l4-4\"/></g>"
},
"circle-dashed": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M8.56 3.69a9 9 0 0 0-2.92 1.95\"/><path d=\"M3.69 8.56A9 9 0 0 0 3 12\"/><path d=\"M3.69 15.44a9 9 0 0 0 1.95 2.92\"/><path d=\"M8.56 20.31A9 9 0 0 0 12 21\"/><path d=\"M15.44 20.31a9 9 0 0 0 2.92-1.95\"/><path d=\"M20.31 15.44A9 9 0 0 0 21 12\"/><path d=\"M20.31 8.56a9 9 0 0 0-1.95-2.92\"/><path d=\"M15.44 3.69A9 9 0 0 0 12 3\"/></g>"
},
"circle-dotted": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7.5 4.21v.01\"/><path d=\"M4.21 7.5v.01\"/><path d=\"M3 12v.01\"/><path d=\"M4.21 16.5v.01\"/><path d=\"M7.5 19.79v.01\"/><path d=\"M12 21v.01\"/><path d=\"M16.5 19.79v.01\"/><path d=\"M19.79 16.5v.01\"/><path d=\"M21 12v.01\"/><path d=\"M19.79 7.5v.01\"/><path d=\"M16.5 4.21v.01\"/><path d=\"M12 3v.01\"/></g>"
},
"circle-minus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M9 12h6\"/></g>"
},
"circle-plus": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M9 12h6\"/><path d=\"M12 9v6\"/></g>"
},
"circle-square": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"9.5\" cy=\"9.5\" r=\"6.5\"/><rect x=\"10\" y=\"10\" width=\"11\" height=\"11\" rx=\"2\"/></g>"
},
"circle-x": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M10 10l4 4m0-4l-4 4\"/></g>"
},
"circles": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"7\" r=\"4\"/><circle cx=\"6.5\" cy=\"17\" r=\"4\"/><circle cx=\"17.5\" cy=\"17\" r=\"4\"/></g>"
},
"clear-formatting": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M17 15l4 4m0-4l-4 4\"/><path d=\"M7 6V5h11v1\"/><path d=\"M7 19h4\"/><path d=\"M13 5L9 19\"/></g>"
},
"click": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 12h3\"/><path d=\"M12 3v3\"/><path d=\"M7.8 7.8L5.6 5.6\"/><path d=\"M16.2 7.8l2.2-2.2\"/><path d=\"M7.8 16.2l-2.2 2.2\"/><path d=\"M12 12l9 3l-4 2l-2 4l-3-9\"/></g>"
},
"clipboard": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2\"/><rect x=\"9\" y=\"3\" width=\"6\" height=\"4\" rx=\"2\"/></g>"
},
"clipboard-check": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2\"/><rect x=\"9\" y=\"3\" width=\"6\" height=\"4\" rx=\"2\"/><path d=\"M9 14l2 2l4-4\"/></g>"
},
"clipboard-list": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2\"/><rect x=\"9\" y=\"3\" width=\"6\" height=\"4\" rx=\"2\"/><path d=\"M9 12h.01\"/><path d=\"M13 12h2\"/><path d=\"M9 16h.01\"/><path d=\"M13 16h2\"/></g>"
},
"clipboard-x": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2\"/><rect x=\"9\" y=\"3\" width=\"6\" height=\"4\" rx=\"2\"/><path d=\"M10 12l4 4m0-4l-4 4\"/></g>"
},
"clock": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M12 7v5l3 3\"/></g>"
},
"cloud": {
"body": "<path d=\"M7 18a4.6 4.4 0 0 1 0-9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7H7\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
},
"cloud-download": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 18a3.5 3.5 0 0 0 0-7h-1A5 4.5 0 0 0 7 9a4.6 4.4 0 0 0-2.1 8.4\"/><path d=\"M12 13v9\"/><path d=\"M9 19l3 3l3-3\"/></g>"
},
"cloud-fog": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 16a4.6 4.4 0 0 1 0-9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7H7\"/><path d=\"M5 20h14\"/></g>"
},
"cloud-off": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 3l18 18\"/><path d=\"M18 18H7c-2.598 0-4.705-2.015-4.705-4.5S4.402 9 7 9c.112-.5.305-.973.568-1.408m2.094-1.948c.329-.174.68-.319 1.05-.43c1.9-.576 3.997-.194 5.5 1C17.715 7.406 18.397 9.231 18 11h1a3.5 3.5 0 0 1 2.212 6.212\"/></g>"
},
"cloud-rain": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 18a4.6 4.4 0 0 1 0-9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7\"/><path d=\"M11 13v2m0 3v2m4-5v2m0 3v2\"/></g>"
},
"cloud-snow": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 18a4.6 4.4 0 0 1 0-9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7\"/><path d=\"M11 15v.01m0 3v.01m0 3v.01m4-4v.01m0 3v.01\"/></g>"
},
"cloud-storm": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 18a4.6 4.4 0 0 1 0-9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1\"/><path d=\"M13 14l-2 4h3l-2 4\"/></g>"
},
"cloud-upload": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 18a4.6 4.4 0 0 1 0-9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1\"/><path d=\"M9 15l3-3l3 3\"/><path d=\"M12 12v9\"/></g>"
},
"code": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M7 8l-4 4l4 4\"/><path d=\"M17 8l4 4l-4 4\"/><path d=\"M14 4l-4 16\"/></g>"
},
"coin": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"9\"/><path d=\"M14.8 9A2 2 0 0 0 13 8h-2a2 2 0 0 0 0 4h2a2 2 0 0 1 0 4h-2a2 2 0 0 1-1.8-1\"/><path d=\"M12 6v2m0 8v2\"/></g>"
},
"color-picker": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M11 7l6 6\"/><path d=\"M5 19v-4l9.7-9.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4L9 19H5\"/></g>"
},
"color-swatch": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M19 3h-4a2 2 0 0 0-2 2v12a4 4 0 0 0 8 0V5a2 2 0 0 0-2-2\"/><path d=\"M13 7.35l-2-2a2 2 0 0 0-2.828 0L5.344 8.178a2 2 0 0 0 0 2.828l9 9\"/><path d=\"M7.3 13H5a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h12\"/><path d=\"M17 17v.01\"/></g>"
},
"columns": {
"body": "<g class=\"icon-tabler\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M4 6h5.5\"/><path d=\"M4 10h5.5\"/><path d=\"M4 14h5.5\"/><path d=\"M4 18h5.5\"/><path d=\"M14.5 6H20\"/><path d=\"M14.5 10H20\"/><path d=\"M14.5 14H20\"/><path d=\"M14.5 18H20\"/></g>"
},