icon_sets 0.3.0

Generated icon data
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
//! This file is auto-generated. Changes may be erased.

use crate::Icon;
use once_cell::sync::Lazy;
use std::collections::HashMap;

pub static ICON_LIST: Lazy<HashMap<&'static str, Icon>> = Lazy::new(|| {
	let mut icons = HashMap::new();

	icons.insert(
		"Above",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 320l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220q0 8 6 14 6 6 14 6l0 0z m120 60l0-60 100 0q8 0 14-6 6-6 6-14l0-100 60 0 0 180-180 0z\"/>",
			],
		},
	);

	icons.insert(
		"AlignCenter",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 160l360 0 0-40-360 0 0 40z m60 80l240 0 0-40-240 0 0 40z m0-160l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"AlignLeft",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 240l240 0 0-40-240 0 0 40z m0-80l360 0 0-40-360 0 0 40z m0-80l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"AlignRight",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M420 140l0-40-360 0 0 40 360 0z m-360 160l360 0 0-40-360 0 0 40z m120 80l240 0 0-40-240 0 0 40z m0-160l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"ArrowDown",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M90 270l150 150 150-150-30-30-90 90-6 10-4 0 0-280-40 0 0 280-4 0-6-10-90-90-30 30z\"/>",
			],
		},
	);

	icons.insert(
		"ArrowLeft",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M210 390l30-30-90-90-10-6 0-4 280 0 0-40-280 0 0-4 10-6 90-90-30-30-150 150 150 150z\"/>",
			],
		},
	);

	icons.insert(
		"ArrowRight",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M270 390l150-150-150-150-30 30 90 90 10 6 0 4-280 0 0 40 280 0 0 4-10 6-90 90 30 30z\"/>",
			],
		},
	);

	icons.insert(
		"ArrowUp",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M90 210l30 30 90-90 6-10 4 0 0 280 40 0 0-280 4 0 6 10 90 90 30-30-150-150-150 150z\"/>",
			],
		},
	);

	icons.insert(
		"At",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M213 396q24 0 48-7 24-7 42-17l-20-32q-10 8-28 14-18 6-39 6-50-1-83-34-34-33-35-84 1-51 35-84 34-33 88-34 50 1 85 30 35 29 36 74 0 22-9 36-9 15-23 15-10 0-17-7-7-7-7-18l0-74-32 0 0 19q-8-11-21-17-13-6-27-6-27 1-45 20-17 19-18 48 1 30 19 50 17 19 45 20 15 0 29-7 13-7 22-19 9 12 22 19 14 8 30 8 29-1 48-26 19-25 20-63-2-59-46-98-45-39-111-40-70 2-114 45-44 43-45 108 2 67 45 110 43 43 106 45l0 0z m-33-152q0-15 10-25 10-10 25-10 16 0 26 10 11 10 11 25 0 16-11 26-11 11-27 11-15 0-24-11-10-10-10-26l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Attach",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 230l0 100q1 43 29 71 28 28 71 29 43-1 71-29 28-28 29-71l0-180q-1-43-29-71-28-28-71-29-43 1-71 29-28 28-29 71l40 0q1-26 17-43 17-16 43-17 26 1 43 17 16 17 17 43l0 180q-1 26-17 43-17 16-43 17-26-1-43-17-16-17-17-43l0-100q0-8 6-14 6-6 14-6 8 0 14 6 6 6 6 14l0 70 40 0 0-70q-1-26-17-43-17-16-43-17-26 1-43 17-16 17-17 43l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Audio",
		Icon {
			view_box: "0 0 460 480",
			class: None,
			width: Some("460"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M120 400l60 0 0-140-80 0 0-20q1-56 38-92 36-37 92-38 56 1 92 38 37 36 38 92l0 20-80 0 0 140 60 0q26-1 43-17 16-17 17-43l0-100q-2-73-49-121-48-47-121-49-73 2-121 49-47 48-49 121l0 100q1 26 17 43 17 16 43 17l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"AudioDescription",
		Icon {
			view_box: "0 0 460 480",
			class: None,
			width: Some("460"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M230 420q44-1 86-29 42-28 64-71-22-43-64-71-42-28-86-29-43 1-85 29-42 28-65 71 23 43 65 71 42 28 85 29l0 0z m-160-310l30 30q28-28 61-40 34-12 69-12 36 0 69 12 34 12 61 40l30-30q-34-34-75-49-41-15-85-15-43 0-84 15-42 15-76 49l0 0z m60 60l30 30q15-15 33-22 18-6 37-6 19 0 37 6 19 7 33 22l30-30q-21-21-47-31-26-9-53-9-27 0-53 9-26 10-47 31l0 0z m40 150q1-26 17-43 17-16 43-17 26 1 43 17 16 17 17 43-1 26-17 43-17 16-43 17-26-1-43-17-16-17-17-43l0 0z m30 0q0 13 9 21 8 9 21 9 13 0 21-9 9-8 9-21 0-13-9-21-8-9-21-9-13 0-21 9-9 8-9 21l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Ban",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M200 410q73-2 121-49 47-48 49-121-2-73-49-121-48-47-121-49-73 2-121 49-47 48-49 121 2 73 49 121 48 47 121 49l0 0z m-130-170q1-56 38-92 36-37 92-38 22 0 41 6 19 7 35 18l-182 182q-11-16-18-35-6-19-6-41l0 0z m54 106l182-182q11 16 18 35 6 19 6 41-1 56-38 92-36 37-92 38-22 0-41-6-19-7-35-18l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Bars",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M310 395l40 0 0-320-40 0 0 320z m-240 0l40 0 0-320-40 0 0 320z m120 0l40 0 0-320-40 0 0 320z\"/>",
			],
		},
	);

	icons.insert(
		"Below",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 320l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220q0 8 6 14 6 6 14 6l0 0z m120 60l0-180 180 0 0 180-180 0z\"/>",
			],
		},
	);

	icons.insert(
		"Bold",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 380l125 0q38-1 61-22 23-22 24-58 0-26-14-43-14-18-36-21l0-4q15-5 25-22 10-17 10-36-1-35-27-55-27-19-70-19l-98 0 0 280z m40-40l0-80 89 0q18 0 30 11 11 11 11 29 0 18-11 29-12 11-30 11l-89 0z m0-120l0-80 72 0q19 0 31 11 12 11 12 29 0 18-12 29-12 11-31 11l-72 0z\"/>",
			],
		},
	);

	icons.insert(
		"Bookmark",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 430l90-90 90 90 0-340-180 0 0 340z\"/>",
			],
		},
	);

	icons.insert(
		"Box",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-280 280 0 0 280-280 0z\"/>",
			],
		},
	);

	icons.insert(
		"BoxCross",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M180 330l-30-30 60-60-60-60 30-30 60 60 60-60 30 30-60 60 60 60-30 30-60-60-60 60z m-120 70q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320z\"/>",
			],
		},
	);

	icons.insert(
		"BoxCrossO",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-280 280 0 0 280-280 0z m50-80l30 30 60-60 60 60 30-30-60-60 60-60-30-30-60 60-60-60-30 30 60 60-60 60z\"/>",
			],
		},
	);

	icons.insert(
		"BoxFull",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"BoxMinus",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 260l0-40 200 0 0 40-200 0z m-80 140q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320z\"/>",
			],
		},
	);

	icons.insert(
		"BoxMinusO",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-280 280 0 0 280-280 0z m40-120l200 0 0-40-200 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"BoxPlus",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 340l0-80-80 0 0-40 80 0 0-80 40 0 0 80 80 0 0 40-80 0 0 80-40 0z m-160 60q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320z\"/>",
			],
		},
	);

	icons.insert(
		"BoxPlusO",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-280 280 0 0 280-280 0z m40-120l80 0 0 80 40 0 0-80 80 0 0-40-80 0 0-80-40 0 0 80-80 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"BoxTick",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M218 330l-88-90 30-30 57 57 103-117 30 30-132 150z m-158 70q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320z\"/>",
			],
		},
	);

	icons.insert(
		"BoxTickO",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-280 280 0 0 280-280 0z m30-140l30-30 57 57 103-117 30 30-132 150-88-90z\"/>",
			],
		},
	);

	icons.insert(
		"Calendar",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 400l320 0q8 0 14-6 6-6 6-14l0-240q0-8-6-14-6-6-14-6l-40 0 0-40-40 0 0 40-60 0 0-40-40 0 0 40-60 0 0-40-40 0 0 40-40 0q-8 0-14 6-6 6-6 14l0 240q0 8 6 14 6 6 14 6l0 0z m20-40l0-160 280 0 0 160-280 0z\"/>",
			],
		},
	);

	icons.insert(
		"Cancel",
		Icon {
			view_box: "0 0 428 480",
			class: None,
			width: Some("428"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M90 390l120-120 130 120 30-30-130-120 130-120-30-30-130 120-120-120-30 30 120 120-120 120 30 30z\"/>",
			],
		},
	);

	icons.insert(
		"Captions",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 400l360 0q8 0 14-6 6-6 6-14l0-280q0-8-6-14-6-6-14-6l-360 0q-8 0-14 6-6 6-6 14l0 280q0 8 6 14 6 6 14 6l0 0z m40-110l0-100q1-24 17-39 17-15 43-16 26 1 43 16 16 15 17 39l0 30-40 0 0-29q0-7-6-13-6-7-14-7-8 0-14 7-6 6-6 13l0 99q0 6 6 12 6 7 14 7 8 0 14-7 6-6 6-12l0-30 40 0 0 30q-1 24-17 39-17 15-43 16-26-1-43-16-16-15-17-39l0 0z m160 0l0-100q1-24 17-39 17-15 43-16 26 1 43 16 16 15 17 39l0 30-40 0 0-29q0-7-6-13-6-7-14-7-8 0-14 7-6 6-6 13l0 99q0 6 6 12 6 7 14 7 8 0 14-7 6-6 6-12l0-30 40 0 0 30q-1 24-17 39-17 15-43 16-26-1-43-16-16-15-17-39l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Caret",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 200l180 0-90-110-90 110z m0 80l90 110 90-110-180 0z\"/>",
			],
		},
	);

	icons.insert(
		"CaretDown",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M150 290l90-110-180 0 90 110z\"/>"],
		},
	);

	icons.insert(
		"CaretUp",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M60 280l180 0-90-110-90 110z\"/>"],
		},
	);

	icons.insert(
		"Chapters",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 140l280 0 0-40-280 0 0 40z m-80 240l40 0 0-40-40 0 0 40z m0-80l40 0 0-40-40 0 0 40z m0-80l40 0 0-40-40 0 0 40z m0-80l40 0 0-40-40 0 0 40z m80 240l280 0 0-40-280 0 0 40z m0-80l280 0 0-40-280 0 0 40z m0-80l280 0 0-40-280 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"ChartArea",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 340l280 0 0-240-110 110-60-60-110 110 0 80z m0 80l280 0 0-40-280 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"ChartBar",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 420l280 0 0-40-280 0 0 40z m0-80l40 0 0-100-40 0 0 100z m80 0l40 0 0-220-40 0 0 220z m80 0l40 0 0-160-40 0 0 160z m80 0l40 0 0-280-40 0 0 280z\"/>",
			],
		},
	);

	icons.insert(
		"ChartLine",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M90 290l80-80 60 60 130-130-30-30-100 100-60-60-110 110 30 30z m-30 130l280 0 0-40-280 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"ChartPie",
		Icon {
			view_box: "0 0 458 480",
			class: None,
			width: Some("458"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M210 420q65-2 107-44 42-42 43-106l-150 0 0-150q-64 1-106 43-42 42-44 107 2 64 44 106 42 42 106 44l0 0z m40-190l140 0q-1-60-41-99-39-40-99-41l0 140z\"/>",
			],
		},
	);

	icons.insert(
		"ChartScatter",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 260l40 0 0-40-40 0 0 40z m-80 160l280 0 0-40-280 0 0 40z m0-140l40 0 0-40-40 0 0 40z m80-120l40 0 0-40-40 0 0 40z m80 60l40 0 0-40-40 0 0 40z m80 60l40 0 0-40-40 0 0 40z m0-180l40 0 0-40-40 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Chat",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M150 430l90-90 160 0q8 0 14-6 6-6 6-14l0-210q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 210q0 8 6 14 6 6 14 6l70 0 0 90z\"/>",
			],
		},
	);

	icons.insert(
		"Clock",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M200 410q73-2 121-49 47-48 49-121-2-73-49-121-48-47-121-49-73 2-121 49-47 48-49 121 2 73 49 121 48 47 121 49l0 0z m-20-150l0-130 40 0 0 90 90 0 0 40-130 0z\"/>",
			],
		},
	);

	icons.insert(
		"Cloud",
		Icon {
			view_box: "0 0 502 480",
			class: None,
			width: Some("502"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M160 370l210 0q31-1 51-21 19-20 20-51-1-26-15-44-14-18-36-24 5-7 7-20 3-13 3-25-1-47-35-77-34-31-84-32-48 1-79 30-31 29-32 74l-10 0q-41 1-69 28-27 26-28 67 1 41 28 67 28 27 69 28l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Code",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M300 370l140-130-140-140-30 30 110 110-110 100 30 30z m-250-130l130 130 30-30-100-100 100-110-30-30-130 140z\"/>",
			],
		},
	);

	icons.insert(
		"Cog",
		Icon {
			view_box: "0 0 500 480",
			class: None,
			width: Some("500"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M214 420l72 0 23-77 78 19 36-64-55-58 55-58-36-64-78 19-23-77-72 0-23 77-78-19-36 64 55 58-55 58 36 64 78-19 23 77z m-24-180q1-25 18-42 17-17 42-18 25 1 42 18 17 17 18 42-1 25-18 42-17 17-42 18-25-1-42-18-17-17-18-42l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Columns",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M260 140l160 0 0-40-160 0 0 40z m-200 240l160 0 0-40-160 0 0 40z m0-80l160 0 0-40-160 0 0 40z m0-80l160 0 0-40-160 0 0 40z m0-80l160 0 0-40-160 0 0 40z m200 240l160 0 0-40-160 0 0 40z m0-80l160 0 0-40-160 0 0 40z m0-80l160 0 0-40-160 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Contract",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M300 210l120 0 0-40-80 0 0-70-40 0 0 110z m-240 100l80 0 0 60 40 0 0-100-120 0 0 40z m0-100l120 0 0-110-40 0 0 70-80 0 0 40z m240 160l40 0 0-60 80 0 0-40-120 0 0 100z\"/>",
			],
		},
	);

	icons.insert(
		"Copy",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M320 300l0-100 60 0 0 180-180 0 0-60 100 0q8 0 14-6 6-6 6-14l0 0z m-260 0q0 8 6 14 6 6 14 6l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220z m40-20l0-180 180 0 0 180-180 0z\"/>",
			],
		},
	);

	icons.insert(
		"Delete",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M100 400l200 0q8 0 14-6 6-6 6-14l0-200 40 0 0-40-80 0 0-40q0-8-6-14-6-6-14-6l-120 0q-8 0-14 6-6 6-6 14l0 40-80 0 0 40 40 0 0 200q0 8 6 14 6 6 14 6l0 0z m20-40l0-160 60 0 0 160-60 0z m40-200l0-40 80 0 0 40-80 0z m60 200l0-160 60 0 0 160-60 0z\"/>",
			],
		},
	);

	icons.insert(
		"Difference",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 320l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220q0 8 6 14 6 6 14 6l0 0z m100-20l0-120 120 0 0 120-120 0z\"/>",
			],
		},
	);

	icons.insert(
		"Down",
		Icon {
			view_box: "0 0 490 480",
			class: None,
			width: Some("490"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M250 360l180-180-30-30-150 150-160-150-30 30 190 180z\"/>",
			],
		},
	);

	icons.insert(
		"Download",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 60l0 190-70-70-30 30 120 120 120-120-30-30-70 70 0-190-40 0z m-160 360l360 0 0-40-360 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Drive",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M120 400l240 0q35-1 57-23 22-22 23-57l0-160q-1-35-23-57-22-22-57-23l-240 0q-35 1-57 23-22 22-23 57l0 160q1 35 23 57 22 22 57 23l0 0z m-40-80l0-90q9 5 19 7 10 3 21 3l240 0q11 0 21-3 10-2 19-7l0 90q0 17-12 28-11 12-28 12l-240 0q-17 0-28-12-12-11-12-28l0 0z m0-160q0-17 12-28 11-12 28-12l240 0q17 0 28 12 12 11 12 28 0 17-12 28-11 12-28 12l-240 0q-17 0-28-12-12-11-12-28l0 0z m40 160l120 0 0-40-120 0 0 40z m200 0l40 0 0-40-40 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Edit",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M200 360l150-150-80-80-150 150 80 80z m-140 60l110-30-80-80-30 110z m240-320l80 80 50-50-80-80-50 50z\"/>",
			],
		},
	);

	icons.insert(
		"Expand",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M380 210l40 0 0-110-120 0 0 40 80 0 0 70z m-320 160l120 0 0-40-80 0 0-60-40 0 0 100z m0-160l40 0 0-70 80 0 0-40-120 0 0 110z m240 160l120 0 0-100-40 0 0 60-80 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"External",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M380 230l0-130-130 0 50 50-120 120 30 30 120-120 50 50z m-300 150q0 8 6 14 6 6 14 6l240 0q8 0 14-6 6-6 6-14l0-100-40 0 0 80-200 0 0-200 80 0 0-40-100 0q-8 0-14 6-6 6-6 14l0 240z\"/>",
			],
		},
	);

	icons.insert(
		"Fail",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z m-90-130l60-60-60-60 30-30 60 60 60-60 30 30-60 60 60 60-30 30-60-60-60 60-30-30z\"/>",
			],
		},
	);

	icons.insert(
		"File",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M100 420l240 0q8 0 14-6 6-6 6-14l0-226q0-6-3-13-2-6-7-11l-80-80q-5-5-11-7-7-3-13-3l-146 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-280 80 0 0 120 120 0 0 160-200 0z m120-200l0-84 84 84-84 0z\"/>",
			],
		},
	);

	icons.insert(
		"Flag",
		Icon {
			view_box: "0 0 460 480",
			class: None,
			width: Some("460"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 310l260 0-80-110 80-110-260 0 0 220z m-80 110l40 0 0-330-40 0 0 330z\"/>",
			],
		},
	);

	icons.insert(
		"Folder",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M420 360l0-200q0-8-6-14-6-6-14-6l-150 0q-19-4-36-30-18-26-44-30l-90 0q-8 0-14 6-6 6-6 14l0 260q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0 0z m-320-20l0-220 60 0q19 4 36 30 18 26 44 30l140 0 0 160-280 0z\"/>",
			],
		},
	);

	icons.insert(
		"Grid",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M260 220l140 0 0-140-140 0 0 140z m-180 180l140 0 0-140-140 0 0 140z m0-180l140 0 0-140-140 0 0 140z m180 180l140 0 0-140-140 0 0 140z\"/>",
			],
		},
	);

	icons.insert(
		"Group",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 310l0 30 160 0 0-30q-1-26-17-43-17-16-43-17l-40 0q-26 1-43 17-16 17-17 43l0 0z m10-160q1 30 20 50 20 19 50 20 30-1 50-20 19-20 20-50-1-30-20-50-20-19-50-20-30 1-50 20-19 20-20 50l0 0z m190 250l160 0 0-30q-1-26-17-43-17-16-43-17l-40 0q-26 1-43 17-16 17-17 43l0 30z m10-190q1 30 20 50 20 19 50 20 30-1 50-20 19-20 20-50-1-30-20-50-20-19-50-20-30 1-50 20-19 20-20 50l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Hash",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 210l51 0-16 60-55 0 0 40 45 0-19 70 44 0 19-70 66 0-19 70 44 0 19-70 61 0 0-40-51 0 16-60 55 0 0-40-44 0 18-70-44 0-18 70-66 0 18-70-44 0-18 70-62 0 0 40z m79 60l16-60 66 0-16 60-66 0z\"/>",
			],
		},
	);

	icons.insert(
		"Hd",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 400l360 0q8 0 14-6 6-6 6-14l0-280q0-8-6-14-6-6-14-6l-360 0q-8 0-14 6-6 6-6 14l0 280q0 8 6 14 6 6 14 6l0 0z m40-60l0-200 40 0 0 80 40 0 0-80 40 0 0 200-40 0 0-80-40 0 0 80-40 0z m160 0l0-200 70 0q22 1 36 17 14 17 14 43l0 80q0 26-14 43-14 16-36 17l-70 0z m40-40l20 0q8 0 14-6 6-6 6-14l0-80q0-8-6-14-6-6-14-6l-20 0 0 120z\"/>",
			],
		},
	);

	icons.insert(
		"Heart",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M240 400q80-66 129-117 50-50 51-96-1-38-26-62-26-24-64-25-38 1-64 26-25 26-26 64-1-38-26-64-26-25-64-26-38 1-64 26-25 26-26 64 1 44 51 94 49 49 129 116l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Hide",
		Icon {
			view_box: "0 0 510 480",
			class: None,
			width: Some("510"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M250 375q22 0 41-4 19-5 37-13l62 62 30-30-330-330-30 30 64 64q-22 19-39 42-18 23-25 44 22 58 76 96 53 38 114 39l0 0z m-90-135q0-11 2-21 3-10 8-19l31 31q-1 4-1 9 1 21 15 35 14 14 35 15 5 0 9-1l31 31q-9 5-19 7-10 3-21 3-38-1-64-26-25-26-26-64l0 0z m42-128l38 38 10 0q38 1 64 26 25 26 26 64l0 10 57 57q12-14 23-31 11-17 20-36-30-59-78-96-48-38-112-39-25 0-48 7l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Home",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 420l320 0q8 0 14-6 6-6 6-14l0-175q0-7-3-14-3-7-8-11l-155-133q-3-3-7-5-4-2-7-2-3 0-7 2-4 2-7 5l-155 133q-5 4-8 11-3 7-3 14l0 175q0 8 6 14 6 6 14 6l0 0z m20-40l0-152 140-120 140 120 0 152-100 0 0-100-80 0 0 100-100 0z\"/>",
			],
		},
	);

	icons.insert(
		"IAsterisk",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M260 205l-20-35q-21 12-37 23-15 10-28 21 3-16 4-36 1-19 1-43l-40 0q0 24 1 43 1 20 4 36-13-11-28-21-16-11-37-23l-20 35q21 12 38 20 17 9 33 15-16 6-33 14-17 9-38 21l20 35q21-13 37-23 15-10 28-21-3 16-4 36-1 19-1 43l40 0q0-24-1-43-1-20-4-36 13 11 28 21 16 10 37 23l20-35q-21-12-38-21-17-8-33-14 16-6 33-15 17-8 38-20l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"IBullet",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M160 330q38-1 64-26 25-26 26-64-1-38-26-64-26-25-64-26-38 1-64 26-25 26-26 64 1 38 26 64 26 25 64 26l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"ICross",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M100 330l60-60 60 60 30-30-60-60 60-60-30-30-60 60-60-60-30 30 60 60-60 60 30 30z\"/>",
			],
		},
	);

	icons.insert(
		"IDivide",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M160 191q13 0 21-9 9-8 9-21 0-13-9-21-8-9-21-9-13 0-21 9-9 8-9 21 0 13 9 21 8 9 21 9l0 0z m-100 69l200 0 0-40-200 0 0 40z m70 61q0 13 9 21 8 9 21 9 13 0 21-9 9-8 9-21 0-13-9-21-8-9-21-9-13 0-21 9-9 8-9 21l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"IDown",
		Icon {
			view_box: "0 0 364 480",
			class: None,
			width: Some("364"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 190l120 120 120-120-30-30-90 90-90-90-30 30z\"/>",
			],
		},
	);

	icons.insert(
		"IEqual",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 320l200 0 0-40-200 0 0 40z m0-120l200 0 0-40-200 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"ILeft",
		Icon {
			view_box: "0 0 289 480",
			class: None,
			width: Some("289"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M200 120l-120 120 120 120 30-30-90-90 90-90-30-30z\"/>",
			],
		},
	);

	icons.insert(
		"IMinus",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M60 260l200 0 0-40-200 0 0 40z\"/>"],
		},
	);

	icons.insert(
		"IPlus",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 340l40 0 0-80 80 0 0-40-80 0 0-80-40 0 0 80-80 0 0 40 80 0 0 80z\"/>",
			],
		},
	);

	icons.insert(
		"IRight",
		Icon {
			view_box: "0 0 270 480",
			class: None,
			width: Some("270"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M90 360l120-120-120-120-30 30 90 90-90 90 30 30z\"/>",
			],
		},
	);

	icons.insert(
		"ITick",
		Icon {
			view_box: "0 0 320 480",
			class: None,
			width: Some("320"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M138 330l-88-90 30-30 57 57 103-117 30 30-132 150z\"/>",
			],
		},
	);

	icons.insert(
		"IUp",
		Icon {
			view_box: "0 0 364 480",
			class: None,
			width: Some("364"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M300 290l-120-120-120 120 30 30 90-90 90 90 30-30z\"/>",
			],
		},
	);

	icons.insert(
		"Image",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 400l360 0q8 0 14-6 6-6 6-14l0-280q0-8-6-14-6-6-14-6l-360 0q-8 0-14 6-6 6-6 14l0 280q0 8 6 14 6 6 14 6l0 0z m20-40l80-80 60 50 90-90 90 90 0 30-320 0z m40-170q0-17 12-28 11-12 28-12 17 0 28 12 12 11 12 28 0 17-12 28-11 12-28 12-17 0-28-12-12-11-12-28l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Indent",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 240l360 0 0-40-360 0 0 40z m0-80l80-60-80-60 0 120z m120 0l240 0 0-40-240 0 0 40z m0-80l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Info",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z m-26-244l0-52 52 0 0 52-52 0z m4 154l0-120 44 0 0 120-44 0z\"/>",
			],
		},
	);

	icons.insert(
		"Internal",
		Icon {
			view_box: "0 0 460 480",
			class: None,
			width: Some("460"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M280 180l-45 45-125-125-30 30 125 125-45 45 120 0 0-120z m-200 200q0 8 6 14 6 6 14 6l260 0q8 0 14-6 6-6 6-14l0-260q0-8-6-14-6-6-14-6l-140 0 0 40 120 0 0 220-220 0 0-120-40 0 0 140z\"/>",
			],
		},
	);

	icons.insert(
		"Intersect",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 320l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220q0 8 6 14 6 6 14 6l0 0z m20-40l0-180 180 0 0 60-100 0q-8 0-14 6-6 6-6 14l0 100-60 0z m100 100l0-60 100 0q8 0 14-6 6-6 6-14l0-100 60 0 0 180-180 0z\"/>",
			],
		},
	);

	icons.insert(
		"Italic",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M100 140l90 0-54 200-76 0 0 40 200 0 0-40-80 0 54-200 86 0 0-40-220 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"JustifyCenter",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 160l360 0 0-40-360 0 0 40z m0-80l360 0 0-40-360 0 0 40z m60 160l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"JustifyLeft",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 240l240 0 0-40-240 0 0 40z m0-80l360 0 0-40-360 0 0 40z m0-80l360 0 0-40-360 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"JustifyRight",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M420 140l0-40-360 0 0 40 360 0z m-360 160l360 0 0-40-360 0 0 40z m0-80l360 0 0-40-360 0 0 40z m120 160l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Landscape",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 380l320 0q8 0 14-6 6-6 6-14l0-240q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 240q0 8 6 14 6 6 14 6l0 0z m20-40l0-200 280 0 0 200-280 0z\"/>",
			],
		},
	);

	icons.insert(
		"Left",
		Icon {
			view_box: "0 0 350 480",
			class: None,
			width: Some("350"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 250l180 180 30-30-150-150 150-160-30-30-180 190z\"/>",
			],
		},
	);

	icons.insert(
		"Link",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M340 290l40 0q26-1 43-17 16-17 17-43l0-60q-1-26-17-43-17-16-43-17l-140 0q-26 1-43 17-16 17-17 43l0 79q0 18 11 29 11 12 29 12l0-120q0-8 6-14 6-6 14-6l140 0q8 0 14 6 6 6 6 14l0 60q0 8-6 14-6 6-14 6l-40 0 0 40z m-300 20q1 26 17 43 17 16 43 17l140 0q26-1 43-17 16-17 17-43l0-79q0-18-11-29-11-12-29-12l0 120q0 8-6 14-6 6-14 6l-140 0q-8 0-14-6-6-6-6-14l0-60q0-8 6-14 6-6 14-6l40 0 0-40-40 0q-26 1-43 17-16 17-17 43l0 60z\"/>",
			],
		},
	);

	icons.insert(
		"List",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M180 140l240 0 0-60-240 0 0 60z m-120 260l60 0 0-60-60 0 0 60z m0-130l60 0 0-60-60 0 0 60z m0-130l60 0 0-60-60 0 0 60z m120 260l240 0 0-60-240 0 0 60z m0-130l240 0 0-60-240 0 0 60z\"/>",
			],
		},
	);

	icons.insert(
		"Lock",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M90 400l180 0q13 0 21-9 9-8 9-21l0-150q0-13-9-21-8-9-21-9l0-30q-1-38-26-64-24-25-62-26-40 1-65 26-26 26-27 64l0 30q-13 0-21 9-9 8-9 21l0 150q0 13 9 21 8 9 21 9l0 0z m40-180l0-60q1-22 15-36 14-14 35-14 22 0 36 14 14 14 14 36l0 60-100 0z\"/>",
			],
		},
	);

	icons.insert(
		"Mail",
		Icon {
			view_box: "0 0 500 480",
			class: None,
			width: Some("500"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 380l340 0q8 0 14-6 6-6 6-14l0-240q0-8-6-14-6-6-14-6l-340 0q-8 0-14 6-6 6-6 14l0 240q0 8 6 14 6 6 14 6l0 0z m20-40l0-170 150 122 150-122 0 170-300 0z m24-200l252 0-126 102-126-102z\"/>",
			],
		},
	);

	icons.insert(
		"Matrix",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M320 160l80 0 0-80-80 0 0 80z m-240 240l80 0 0-80-80 0 0 80z m0-120l80 0 0-80-80 0 0 80z m0-120l80 0 0-80-80 0 0 80z m120 240l80 0 0-80-80 0 0 80z m0-120l80 0 0-80-80 0 0 80z m0-120l80 0 0-80-80 0 0 80z m120 240l80 0 0-80-80 0 0 80z m0-120l80 0 0-80-80 0 0 80z\"/>",
			],
		},
	);

	icons.insert(
		"Max",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M60 140l260 0 0-40-260 0 0 40z\"/>"],
		},
	);

	icons.insert(
		"Menu",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 240l360 0 0-40-360 0 0 40z m0-120l360 0 0-40-360 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Microphone",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 220l0-100q1-22 15-36 14-14 35-14 22 0 36 14 14 14 14 36l0 100q0 21-14 35-14 14-36 15-21-1-35-15-14-14-15-35l0 0z m-80 1q1 50 31 85 31 35 79 43l0 31-50 0 0 40 140 0 0-40-50 0 0-31q48-8 79-44 30-35 31-85l0-30-40 0 0 30q-1 38-26 64-26 25-64 26-38-1-64-26-25-26-26-64l0-30-40 0 0 31z\"/>",
			],
		},
	);

	icons.insert(
		"Min",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M60 380l260 0 0-40-260 0 0 40z\"/>"],
		},
	);

	icons.insert(
		"Minus",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M80 260l320 0 0-40-320 0 0 40z\"/>"],
		},
	);

	icons.insert(
		"Move",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M340 220l0-120-120 0 45 45-65 65-65-65 45-45-120 0 0 120 45-45 65 65-65 65-45-45 0 120 120 0-45-45 65-65 65 65-45 45 120 0 0-120-45 45-65-65 65-65 45 45z\"/>",
			],
		},
	);

	icons.insert(
		"MoveAlt",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M320 320l80-80-80-80 0 60-80 0 0-80 60 0-80-80-80 80 60 0 0 80-80 0 0-60-80 80 80 80 0-60 80 0 0 80-60 0 80 80 80-80-60 0 0-80 80 0 0 60z\"/>",
			],
		},
	);

	icons.insert(
		"Next",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 390l200-150-200-150 0 300z m200 0l60 0 0-300-60 0 0 300z\"/>",
			],
		},
	);

	icons.insert(
		"OptsH",
		Icon {
			view_box: "0 0 580 480",
			class: None,
			width: Some("580"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M450 290q22-1 36-15 14-14 14-35 0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36 1 21 15 35 14 14 35 15l0 0z m-370-50q1 21 15 35 14 14 35 15 22-1 36-15 14-14 14-35 0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36l0 0z m160 0q1 21 15 35 14 14 35 15 22-1 36-15 14-14 14-35 0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"OptsV",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M200 80q0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36 1 21 15 35 14 14 35 15 22-1 36-15 14-14 14-35l0 0z m-100 320q1 21 15 35 14 14 35 15 22-1 36-15 14-14 14-35 0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36l0 0z m0-160q1 21 15 35 14 14 35 15 22-1 36-15 14-14 14-35 0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Outdent",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 240l360 0 0-40-360 0 0 40z m0-140l80 60 0-120-80 60z m120 60l240 0 0-40-240 0 0 40z m0-80l240 0 0-40-240 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Outline",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 320l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220q0 8 6 14 6 6 14 6l0 0z m20-40l0-180 180 0 0 60-100 0q-8 0-14 6-6 6-6 14l0 100-60 0z m100 100l0-60 100 0q8 0 14-6 6-6 6-14l0-100 60 0 0 180-180 0z m0-100l0-80 80 0 0 80-80 0z\"/>",
			],
		},
	);

	icons.insert(
		"PanelLeft",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M141 180l0 120 100 0 0-120-100 0z m-81 180q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0-240q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 240z m40-20l0-200 280 0 0 200-280 0z\"/>",
			],
		},
	);

	icons.insert(
		"PanelRight",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M339 180l-100 0 0 120 100 0 0-120z m-279 180q0 8 6 14 6 6 14 6l320 0q8 0 14-6 6-6 6-14l0-240q0-8-6-14-6-6-14-6l-320 0q-8 0-14 6-6 6-6 14l0 240z m40-20l0-200 280 0 0 200-280 0z\"/>",
			],
		},
	);

	icons.insert(
		"Paragraph",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M120 380l40 0 0-240 40 0 0 240 40 0 0-280-130 0q-31 1-50 20-19 19-20 50 1 31 20 50 19 19 50 20l10 0 0 140z\"/>",
			],
		},
	);

	icons.insert(
		"Pass",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z m-110-190l30-30 57 57 103-117 30 30-132 150-88-90z\"/>",
			],
		},
	);

	icons.insert(
		"Pause",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 390l80 0 0-300-80 0 0 300z m-160 0l80 0 0-300-80 0 0 300z\"/>",
			],
		},
	);

	icons.insert(
		"Pipette",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 420l30-20 56 0q6 0 13-3 6-2 11-7l130-130 20 20 60-60-30-30 28-28q18-19 18-42 1-23-16-40-17-17-40-16-23 0-42 18l-28 28-30-30-60 60 20 20-130 130q-5 5-7 11-3 7-3 13l0 56-20 30 20 20z m40-60l0-40 130-130 40 40-130 130-40 0z\"/>",
			],
		},
	);

	icons.insert(
		"Play",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec!["<title/>", "<path d=\"M60 390l250-150-250-150 0 300z\"/>"],
		},
	);

	icons.insert(
		"Plus",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 400l40 0 0-140 140 0 0-40-140 0 0-140-40 0 0 140-140 0 0 40 140 0 0 140z\"/>",
			],
		},
	);

	icons.insert(
		"Portrait",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M100 80l0 320q0 8 6 14 6 6 14 6l240 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-240 0q-8 0-14 6-6 6-6 14l0 0z m40 300l0-280 200 0 0 280-200 0z\"/>",
			],
		},
	);

	icons.insert(
		"Power",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 167l0-45q-40 18-65 54-24 36-25 84 2 64 44 106 42 42 106 44 65-2 107-44 42-42 43-106-1-48-25-84-25-36-65-54l0 45q23 15 36 39 14 24 14 54-1 48-32 78-30 31-78 32-48-1-78-32-31-30-32-78 0-30 14-54 13-24 36-39l0 0z m40 53l40 0 0-140-40 0 0 140z\"/>",
			],
		},
	);

	icons.insert(
		"Prev",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M320 390l0-300-200 150 200 150z m-260 0l60 0 0-300-60 0 0 300z\"/>",
			],
		},
	);

	icons.insert(
		"Print",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M100 420l220 0q8 0 14-6 6-6 6-14l0-40 20 0q13 0 21-9 9-8 9-21l0-80q0-13-9-21-8-9-21-9l-20 0 0-120q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 120-20 0q-13 0-21 9-9 8-9 21l0 80q0 13 9 21 8 9 21 9l20 0 0 40q0 8 6 14 6 6 14 6l0 0z m20-40l0-60 180 0 0 60-180 0z m0-140l0-120 180 0 0 120-180 0z m200 50q0-8 6-14 6-6 14-6 8 0 14 6 6 6 6 14 0 8-6 14-6 6-14 6-8 0-14-6-6-6-6-14l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"RadioFull",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"RadioOff",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z m-150-190q2-65 44-107 42-42 106-43 65 1 107 43 42 42 43 107-1 64-43 106-42 42-107 44-64-2-106-44-42-42-44-106l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"RadioOn",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z m-150-190q2-65 44-107 42-42 106-43 65 1 107 43 42 42 43 107-1 64-43 106-42 42-107 44-64-2-106-44-42-42-44-106l0 0z m60 0q1 38 26 64 26 25 64 26 38-1 64-26 25-26 26-64-1-38-26-64-26-25-64-26-38 1-64 26-25 26-26 64l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Redo",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M260 310l100-90-100-90 0 70-40 0q-69 2-114 46-44 45-46 114l40 0q1-51 35-85 34-34 85-35l40 0 0 70z\"/>",
			],
		},
	);

	icons.insert(
		"Refresh",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 220l100-90-100-90 0 70q-64 1-106 43-42 42-44 107 2 64 44 106 42 42 106 44 65-2 107-44 42-42 43-106l0-20-40 0 0 20q-1 48-32 78-30 31-78 32-48-1-78-32-31-30-32-78 1-48 32-78 30-31 78-32l0 70z\"/>",
			],
		},
	);

	icons.insert(
		"Replay",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 220l0-70q48 1 78 32 31 30 32 78-1 48-32 78-30 31-78 32-48-1-78-32-31-30-32-78l0-20-40 0 0 20q2 64 44 106 42 42 106 44 65-2 107-44 42-42 43-106-1-65-43-107-42-42-107-43l0-70-100 90 100 90z\"/>",
			],
		},
	);

	icons.insert(
		"Right",
		Icon {
			view_box: "0 0 350 480",
			class: None,
			width: Some("350"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M290 250l-180-190-30 30 150 160-150 150 30 30 180-180z\"/>",
			],
		},
	);

	icons.insert(
		"Rss",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M360 420l60 0q-4-155-104-256-101-100-256-104l0 60q129 2 213 86 84 84 87 214l0 0z m-300-45q0 19 13 32 13 13 32 13 19 0 32-13 13-13 13-32 0-19-13-32-13-13-32-13-19 0-32 13-13 13-13 32l0 0z m0-125q73 2 121 49 47 48 49 121l60 0q-2-99-67-163-64-65-163-67l0 60z\"/>",
			],
		},
	);

	icons.insert(
		"Scale",
		Icon {
			view_box: "0 0 360 480",
			class: None,
			width: Some("360"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M300 250l0-130-130 0 50 50-110 110-50-50 0 130 130 0-50-50 110-110 50 50z\"/>",
			],
		},
	);

	icons.insert(
		"ScaleH",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 330l0-70 160 0 0 70 100-90-100-90 0 70-160 0 0-70-100 90 100 90z\"/>",
			],
		},
	);

	icons.insert(
		"ScaleV",
		Icon {
			view_box: "0 0 340 480",
			class: None,
			width: Some("340"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 160l70 0 0 160-70 0 90 100 90-100-70 0 0-160 70 0-90-100-90 100z\"/>",
			],
		},
	);

	icons.insert(
		"Search",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 370q26 0 48-8 23-8 42-22l80 80 30-30-80-80q14-19 22-42 8-22 8-48-1-65-43-107-42-42-107-43-64 1-106 43-42 42-44 107 2 64 44 106 42 42 106 44l0 0z m-110-150q1-48 32-78 30-31 78-32 48 1 78 32 31 30 32 78-1 48-32 78-30 31-78 32-48-1-78-32-31-30-32-78l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Server",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 420l360 0q8 0 14-6 6-6 6-14l0-320q0-8-6-14-6-6-14-6l-360 0q-8 0-14 6-6 6-6 14l0 320q0 8 6 14 6 6 14 6l0 0z m20-40l0-120 320 0 0 120-320 0z m0-160l0-120 320 0 0 120-320 0z m40 120l120 0 0-40-120 0 0 40z m0-160l120 0 0-40-120 0 0 40z m200 160l40 0 0-40-40 0 0 40z m0-160l40 0 0-40-40 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Share",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M300 120l0 3-134 78q-8-10-20-15-12-6-26-6-26 1-43 17-16 17-17 43 1 26 17 43 17 16 43 17 14 0 26-6 12-5 20-15l134 78 0 3q1 26 17 43 17 16 43 17 26-1 43-17 16-17 17-43-1-26-17-43-17-16-43-17-14 0-25 5-11 5-19 14l-136-79 136-79q8 9 19 14 11 5 25 5 26-1 43-17 16-17 17-43-1-26-17-43-17-16-43-17-26 1-43 17-16 17-17 43l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Show",
		Icon {
			view_box: "0 0 500 480",
			class: None,
			width: Some("500"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M250 375q61-1 115-39 53-38 75-96-24-58-77-96-53-38-113-39-60 1-113 39-53 38-77 96 22 58 76 96 53 38 114 39l0 0z m-90-135q1-38 26-64 26-25 64-26 38 1 64 26 25 26 26 64-1 38-26 64-26 25-64 26-38-1-64-26-25-26-26-64l0 0z m40 0q1 21 15 35 14 14 35 15 22-1 36-15 14-14 14-35 0-22-14-36-14-14-36-14-21 0-35 14-14 14-15 36l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Shuffle",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M300 225l70-65-70-65 0 45q-29 1-57 22-28 20-56 49-28-29-59-49-32-21-68-22l0 40q25 1 49 18 25 17 49 42-24 25-49 42-24 17-49 18l0 40q36-1 68-22 31-20 59-49 28 29 56 49 28 21 57 22l0 45 70-65-70-65 0 45q-19-1-39-18-21-17-45-42 24-25 45-42 20-17 39-18l0 45z\"/>",
			],
		},
	);

	icons.insert(
		"SortAsc",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 340l0 40 360 0 0-40-360 0z m0-40l280 0 0-40-280 0 0 40z m0-80l200 0 0-40-200 0 0 40z m0-80l120 0 0-40-120 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"SortDesc",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 140l360 0 0-40-360 0 0 40z m0 240l120 0 0-40-120 0 0 40z m0-80l200 0 0-40-200 0 0 40z m0-80l280 0 0-40-280 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Star",
		Icon {
			view_box: "0 0 516 480",
			class: None,
			width: Some("516"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M314 165l-54-136-54 136-142 11 109 91-35 143 122-80 122 80-35-143 109-91-142-11z\"/>",
			],
		},
	);

	icons.insert(
		"Strikeout",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 390q46-1 73-26 26-24 27-60 0-14-4-25-4-11-12-19l76 0 0-40-158 0q-19-10-36-22-18-11-19-31 0-17 14-27 13-10 35-10 25 0 41 12 15 12 16 33l40 0q-1-39-27-62-26-22-69-23-40 0-65 21-24 21-25 56 0 18 7 31 7 12 17 22l-91 0 0 40 180 0q18 7 29 18 11 10 11 25 0 18-16 32-16 14-43 15-26 0-42-14-16-14-16-36l-43 0q1 40 28 64 28 25 72 26l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Sub",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M240 340l0-200-40 0 0 80-100 0 0-80-40 0 0 200 40 0 0-80 100 0 0 80 40 0z m46-54l32 0q0-11 6-17 6-7 16-7 10 0 16 5 6 6 6 15-2 15-25 37-23 22-48 45l0 16 107 0 0-32-49 0q19-15 33-30 13-15 14-36 0-22-15-37-15-14-39-15-24 0-39 16-15 15-15 40l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Subtitles",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 400l360 0q8 0 14-6 6-6 6-14l0-280q0-8-6-14-6-6-14-6l-360 0q-8 0-14 6-6 6-6 14l0 280q0 8 6 14 6 6 14 6l0 0z m20-40l0-40 200 0 0 40-200 0z m0-80l0-40 80 0 0 40-80 0z m120 0l0-40 200 0 0 40-200 0z m120 80l0-40 80 0 0 40-80 0z\"/>",
			],
		},
	);

	icons.insert(
		"Sup",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M240 340l0-200-40 0 0 80-100 0 0-80-40 0 0 200 40 0 0-80 100 0 0 80 40 0z m46-194l32 0q0-11 6-17 6-7 16-7 10 0 16 5 6 6 6 15-2 15-25 37-23 22-48 45l0 16 107 0 0-32-49 0q19-15 33-30 13-15 14-36 0-22-15-37-15-14-39-15-24 0-39 16-15 15-15 40l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Swap",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 240l0-60 200 0 0-40-200 0 0-60-90 80 90 80z m-60 100l200 0 0 60 90-80-90-80 0 60-200 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Text",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M65 380l45 0 35-80 130 0 35 80 45 0-133-290-24 0-133 290z m98-120l47-107 47 107-94 0z\"/>",
			],
		},
	);

	icons.insert(
		"TextSize",
		Icon {
			view_box: "0 0 420 480",
			class: None,
			width: Some("420"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M240 380l40 0 0-240 100 0 0-40-240 0 0 40 100 0 0 240z m-200-144l62 0 0 144 36 0 0-144 62 0 0-36-160 0 0 36z\"/>",
			],
		},
	);

	icons.insert(
		"TextUnstyle",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M200 380l40 0 0-70 110 110 30-30-330-330-30 30 180 180 0 110z m-50-280l90 90 0-50 100 0 0-40-190 0z\"/>",
			],
		},
	);

	icons.insert(
		"Translate",
		Icon {
			view_box: "0 0 470 480",
			class: None,
			width: Some("470"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M240 380l-80-200-40 0-80 200 40 0 16-42 88 0 16 42 40 0z m-130-78l30-76 30 76-60 0z m100-144l122 0q0 23-8 44-7 22-20 39-8-8-12-18-4-10-4-21l-36 0q0 18 7 34 7 16 21 29-15 12-33 16l-8 2 13 34 8-2q14-3 26-10 12-7 23-16 24 14 55 21 30 8 66 8l0-36q-29 0-53-5-24-5-43-15 16-22 25-49 9-26 9-55l62 0 0-36-82 0 0-42-36 0 0 42-102 0 0 36z\"/>",
			],
		},
	);

	icons.insert(
		"Underline",
		Icon {
			view_box: "0 0 380 480",
			class: None,
			width: Some("380"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M190 320q53-1 81-34 29-33 29-86l0-120-40 0 0 120q0 36-17 58-18 21-53 22-35-1-53-22-17-22-17-58l0-120-40 0 0 120q0 53 29 86 28 33 81 34l0 0z m-130 80l260 0 0-40-260 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"Undo",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M140 310l0-70 40 0q51 1 85 35 34 34 35 85l40 0q-2-69-46-114-45-44-114-46l-40 0 0-70-100 90 100 90z\"/>",
			],
		},
	);

	icons.insert(
		"Unite",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M80 320l80 0 0 80q0 8 6 14 6 6 14 6l220 0q8 0 14-6 6-6 6-14l0-220q0-8-6-14-6-6-14-6l-80 0 0-80q0-8-6-14-6-6-14-6l-220 0q-8 0-14 6-6 6-6 14l0 220q0 8 6 14 6 6 14 6l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Unknown",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M242 260l-44 0q8-34 27-45 19-11 21-29 0-9-7-15-7-5-19-5-15 0-21 10-7 9-7 26l-44 0q0-34 20-55 19-20 52-21 33 1 52 17 18 17 18 43-3 34-22 47-20 14-26 27l0 0z m-212-20q2 81 55 135 54 53 135 55 81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135l0 0z m164 106l0-52 52 0 0 52-52 0z\"/>",
			],
		},
	);

	icons.insert(
		"Up",
		Icon {
			view_box: "0 0 490 480",
			class: None,
			width: Some("490"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M250 120l-190 180 30 30 160-150 150 150 30-30-180-180z\"/>",
			],
		},
	);

	icons.insert(
		"Upload",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 420l40 0 0-190 70 70 30-30-120-120-120 120 30 30 70-70 0 190z m-160-320l360 0 0-40-360 0 0 40z\"/>",
			],
		},
	);

	icons.insert(
		"User",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M240 270q38-1 64-26 25-26 26-64-1-38-26-64-26-25-64-26-38 1-64 26-25 26-26 64 1 38 26 64 26 25 64 26l0 0z m-120 120l240 0 0-30q-1-26-17-43-17-16-43-17l-120 0q-26 1-43 17-16 17-17 43l0 30z\"/>",
			],
		},
	);

	icons.insert(
		"Video",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 430q81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55l0 0z m-60-90l0-200 160 100-160 100z\"/>",
			],
		},
	);

	icons.insert(
		"VideoCamera",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M60 300l0-140q0-17 12-28 11-12 28-12l200 0q17 0 28 12 12 11 12 28l0 100-30-30 90-90 20 0 0 180-20 0-60-60 0 40q0 17-12 28-11 12-28 12l-200 0q-17 0-28-12-12-11-12-28l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"VolHigh",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M260 378l0 42q70-9 114-59 45-50 46-121-1-71-46-121-44-50-114-59l0 42q53 9 86 47 33 38 34 91-1 53-34 91-33 38-86 47l0 0z m-200-58l60 0 100 100 0-360-100 100-60 0 0 160z m200 19q35-8 57-36 22-27 23-63-1-36-23-63-22-28-57-36l0 198z\"/>",
			],
		},
	);

	icons.insert(
		"VolLow",
		Icon {
			view_box: "0 0 300 480",
			class: None,
			width: Some("300"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 420l0-360-100 100-60 0 0 160 60 0 100 100z\"/>",
			],
		},
	);

	icons.insert(
		"VolMid",
		Icon {
			view_box: "0 0 400 480",
			class: None,
			width: Some("400"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M260 141l0 198q35-8 57-36 22-27 23-63-1-36-23-63-22-28-57-36l0 0z m-200 179l60 0 100 100 0-360-100 100-60 0 0 160z\"/>",
			],
		},
	);

	icons.insert(
		"VolMute",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 420l0-170 102 102q-14 11-30 17-17 7-32 9l0 42q25-2 50-13 24-10 42-25l38 38 30-30-330-330-30 30 65 65-5 5-60 0 0 160 60 0 100 100z m-35-325l35 35 0-70-35 35z m75 75l79 79q1-6 1-10-1-35-23-62-22-28-57-36l0 29z m0-66q48 9 83 47 35 37 37 89 0 10-2 22-2 12-5 21l31 31q7-13 11-33 5-21 5-41-2-69-48-119-47-50-112-60l0 43z\"/>",
			],
		},
	);

	icons.insert(
		"Warn",
		Icon {
			view_box: "0 0 440 480",
			class: None,
			width: Some("440"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 50q-81 2-135 55-53 54-55 135 2 81 55 135 54 53 135 55 81-2 135-55 53-54 55-135-2-81-55-135-54-53-135-55l0 0z m-26 296l0-52 52 0 0 52-52 0z m4-86l0-120 44 0 0 120-44 0z\"/>",
			],
		},
	);

	icons.insert(
		"Web",
		Icon {
			view_box: "0 0 540 480",
			class: None,
			width: Some("540"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M270 410q-14-1-25-23-11-22-18-59 21 2 43 2 22 0 43-2-7 37-18 59-11 22-25 23l0 0z m-210-170q2 91 61 149 58 59 149 61 91-2 149-61 59-58 61-149-2-91-61-149-58-59-149-61-91 2-149 61-59 58-61 149l0 0z m40 0q1-14 23-25 22-11 59-18-2 21-2 43 0 22 2 43-37-7-59-18-22-11-23-25l0 0z m8 53q32 20 80 29 9 48 29 80-39-13-68-41-28-29-41-68l0 0z m0-106q13-39 41-68 29-28 68-41-20 32-29 80-48 9-80 29l0 0z m112 53q0-26 2-48 23-2 48-2 26 0 48 2 2 22 2 48 0 25-2 48-22 2-48 2-25 0-48-2-2-23-2-48l0 0z m7-88q7-37 18-59 11-22 25-23 14 1 25 23 11 22 18 59-21-2-43-2-22 0-43 2l0 0z m96 250q20-32 29-80 48-9 80-29-13 39-41 68-29 28-68 41l0 0z m0-324q39 13 68 41 28 29 41 68-32-20-80-29-9-48-29-80l0 0z m35 205q2-21 2-43 0-22-2-43 37 7 59 18 22 11 23 25-1 14-23 25-22 11-59 18l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"Wifi",
		Icon {
			view_box: "0 0 500 480",
			class: None,
			width: Some("500"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M30 160l30 30q40-40 89-59 49-19 101-19 52 0 101 19 49 19 89 59l30-30q-46-46-103-68-57-22-117-22-60 0-116 22-57 22-104 68l0 0z m60 60l30 30q28-28 61-41 34-13 69-13 36 0 69 13 34 13 61 41l30-30q-34-34-75-50-41-16-85-16-43 0-84 16-42 16-76 50l0 0z m60 60l30 30q15-15 33-23 18-7 37-7 19 0 37 7 19 8 33 23l30-30q-21-21-47-32-26-10-53-10-27 0-53 10-26 11-47 32l0 0z m60 60l40 40 40-40q-8-8-18-13-11-5-22-5-11 0-21 5-11 5-19 13l0 0z\"/>",
			],
		},
	);

	icons.insert(
		"ZoomIn",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 370q26 0 48-8 23-8 42-22l80 80 30-30-80-80q14-19 22-42 8-22 8-48-1-65-43-107-42-42-107-43-64 1-106 43-42 42-44 107 2 64 44 106 42 42 106 44l0 0z m-80-130l0-40 60 0 0-60 40 0 0 60 60 0 0 40-60 0 0 60-40 0 0-60-60 0z\"/>",
			],
		},
	);

	icons.insert(
		"ZoomOut",
		Icon {
			view_box: "0 0 480 480",
			class: None,
			width: Some("480"),
			height: Some("480"),
			stroke: None,
			fill: None,
			stroke_width: None,
			stroke_linecap: None,
			stroke_linejoin: None,
			nodes: vec![
				"<title/>",
				"<path d=\"M220 370q26 0 48-8 23-8 42-22l80 80 30-30-80-80q14-19 22-42 8-22 8-48-1-65-43-107-42-42-107-43-64 1-106 43-42 42-44 107 2 64 44 106 42 42 106 44l0 0z m-80-130l0-40 160 0 0 40-160 0z\"/>",
			],
		},
	);

	icons
});