yew_icons 0.10.0

Easily include a variety of SVG icons into your Yew app
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
// Generated file, do not edit by hand, see `src/generator.rs`

static COLLECTION: crate::IconCollection = crate::IconCollection {
    name: "FEATHER",
    license: "From https://github.com/feathericons/feather - Licensed under MIT",
};
impl crate::IconData {
    pub const FEATHER_ACTIVITY: Self = {
        Self {
            collection: &COLLECTION,
            name: "ACTIVITY",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M22 12h-4l-3 9L9 3l-3 9H2\"/>",
        }
    };
    pub const FEATHER_AIRPLAY: Self = {
        Self { collection : & COLLECTION , name : "AIRPLAY" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1\"/><path d=\"m12 15 5 6H7z\"/>" , }
    };
    pub const FEATHER_ALERT_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "ALERT_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 8v4m0 4h.01\"/>",
        }
    };
    pub const FEATHER_ALERT_OCTAGON: Self = {
        Self {
            collection: &COLLECTION,
            name: "ALERT_OCTAGON",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src:
                "<path d=\"M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86zM12 8v4m0 4h.01\"/>",
        }
    };
    pub const FEATHER_ALERT_TRIANGLE: Self = {
        Self { collection : & COLLECTION , name : "ALERT_TRIANGLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0M12 9v4m0 4h.01\"/>" , }
    };
    pub const FEATHER_ALIGN_CENTER: Self = {
        Self {
            collection: &COLLECTION,
            name: "ALIGN_CENTER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M18 10H6m15-4H3m18 8H3m15 4H6\"/>",
        }
    };
    pub const FEATHER_ALIGN_JUSTIFY: Self = {
        Self {
            collection: &COLLECTION,
            name: "ALIGN_JUSTIFY",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 10H3m18-4H3m18 8H3m18 4H3\"/>",
        }
    };
    pub const FEATHER_ALIGN_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ALIGN_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M17 10H3m18-4H3m18 8H3m14 4H3\"/>",
        }
    };
    pub const FEATHER_ALIGN_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ALIGN_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 10H7m14-4H3m18 8H3m18 4H7\"/>",
        }
    };
    pub const FEATHER_ANCHOR: Self = {
        Self { collection : & COLLECTION , name : "ANCHOR" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"5\" r=\"3\"/><path d=\"M12 22V8m-7 4H2a10 10 0 0 0 20 0h-3\"/>" , }
    };
    pub const FEATHER_APERTURE: Self = {
        Self { collection : & COLLECTION , name : "APERTURE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m14.31 8 5.74 9.94M9.69 8h11.48M7.38 12l5.74-9.94M9.69 16 3.95 6.06M14.31 16H2.83m13.79-4-5.74 9.94\"/>" , }
    };
    pub const FEATHER_ARCHIVE: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARCHIVE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 8v13H3V8M1 3h22v5H1zm9 9h4\"/>",
        }
    };
    pub const FEATHER_ARROW_DOWN_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_DOWN_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m8 12 4 4 4-4m-4-4v8\"/>",
        }
    };
    pub const FEATHER_ARROW_DOWN_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_DOWN_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M17 7 7 17m10 0H7V7\"/>",
        }
    };
    pub const FEATHER_ARROW_DOWN_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_DOWN_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m7 7 10 10m0-10v10H7\"/>",
        }
    };
    pub const FEATHER_ARROW_DOWN: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_DOWN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 5v14m7-7-7 7-7-7\"/>",
        }
    };
    pub const FEATHER_ARROW_LEFT_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_LEFT_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m12 8-4 4 4 4m4-4H8\"/>",
        }
    };
    pub const FEATHER_ARROW_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M19 12H5m7 7-7-7 7-7\"/>",
        }
    };
    pub const FEATHER_ARROW_RIGHT_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_RIGHT_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m12 16 4-4-4-4m-4 4h8\"/>",
        }
    };
    pub const FEATHER_ARROW_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M5 12h14m-7-7 7 7-7 7\"/>",
        }
    };
    pub const FEATHER_ARROW_UP_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_UP_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m16 12-4-4-4 4m4 4V8\"/>",
        }
    };
    pub const FEATHER_ARROW_UP_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_UP_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M17 17 7 7m0 10V7h10\"/>",
        }
    };
    pub const FEATHER_ARROW_UP_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_UP_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M7 17 17 7M7 7h10v10\"/>",
        }
    };
    pub const FEATHER_ARROW_UP: Self = {
        Self {
            collection: &COLLECTION,
            name: "ARROW_UP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 19V5m-7 7 7-7 7 7\"/>",
        }
    };
    pub const FEATHER_AT_SIGN: Self = {
        Self { collection : & COLLECTION , name : "AT_SIGN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"4\"/><path d=\"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94\"/>" , }
    };
    pub const FEATHER_AWARD: Self = {
        Self { collection : & COLLECTION , name : "AWARD" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"8\" r=\"7\"/><path d=\"M8.21 13.89 7 23l5-3 5 3-1.21-9.12\"/>" , }
    };
    pub const FEATHER_BAR_CHART_2: Self = {
        Self {
            collection: &COLLECTION,
            name: "BAR_CHART_2",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M18 20V10m-6 10V4M6 20v-6\"/>",
        }
    };
    pub const FEATHER_BAR_CHART: Self = {
        Self {
            collection: &COLLECTION,
            name: "BAR_CHART",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 20V10m6 10V4M6 20v-4\"/>",
        }
    };
    pub const FEATHER_BATTERY_CHARGING: Self = {
        Self { collection : & COLLECTION , name : "BATTERY_CHARGING" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19M23 13v-2M11 6l-4 6h6l-4 6\"/>" , }
    };
    pub const FEATHER_BATTERY: Self = {
        Self { collection : & COLLECTION , name : "BATTERY" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"12\" x=\"1\" y=\"6\" rx=\"2\" ry=\"2\"/><path d=\"M23 13v-2\"/>" , }
    };
    pub const FEATHER_BELL_OFF: Self = {
        Self { collection : & COLLECTION , name : "BELL_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M13.73 21a2 2 0 0 1-3.46 0m8.36-8A17.89 17.89 0 0 1 18 8M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14m1-9a6 6 0 0 0-9.33-5M1 1l22 22\"/>" , }
    };
    pub const FEATHER_BELL: Self = {
        Self { collection : & COLLECTION , name : "BELL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9m-4.27 13a2 2 0 0 1-3.46 0\"/>" , }
    };
    pub const FEATHER_BLUETOOTH: Self = {
        Self {
            collection: &COLLECTION,
            name: "BLUETOOTH",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m6.5 6.5 11 11L12 23V1l5.5 5.5-11 11\"/>",
        }
    };
    pub const FEATHER_BOLD: Self = {
        Self { collection : & COLLECTION , name : "BOLD" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6zm0 8h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z\"/>" , }
    };
    pub const FEATHER_BOOK_OPEN: Self = {
        Self { collection : & COLLECTION , name : "BOOK_OPEN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2zm20 0h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z\"/>" , }
    };
    pub const FEATHER_BOOK: Self = {
        Self { collection : & COLLECTION , name : "BOOK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"/><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2\"/>" , }
    };
    pub const FEATHER_BOOKMARK: Self = {
        Self {
            collection: &COLLECTION,
            name: "BOOKMARK",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m19 21-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z\"/>",
        }
    };
    pub const FEATHER_BOX: Self = {
        Self { collection : & COLLECTION , name : "BOX" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16\"/><path d=\"M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12\"/>" , }
    };
    pub const FEATHER_BRIEFCASE: Self = {
        Self { collection : & COLLECTION , name : "BRIEFCASE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"20\" height=\"14\" x=\"2\" y=\"7\" rx=\"2\" ry=\"2\"/><path d=\"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16\"/>" , }
    };
    pub const FEATHER_CALENDAR: Self = {
        Self { collection : & COLLECTION , name : "CALENDAR" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"4\" rx=\"2\" ry=\"2\"/><path d=\"M16 2v4M8 2v4m-5 4h18\"/>" , }
    };
    pub const FEATHER_CAMERA_OFF: Self = {
        Self { collection : & COLLECTION , name : "CAMERA_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m1 1 22 22m-2-2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56\"/>" , }
    };
    pub const FEATHER_CAMERA: Self = {
        Self { collection : & COLLECTION , name : "CAMERA" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z\"/><circle cx=\"12\" cy=\"13\" r=\"4\"/>" , }
    };
    pub const FEATHER_CAST: Self = {
        Self { collection : & COLLECTION , name : "CAST" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6M2 20h.01\"/>" , }
    };
    pub const FEATHER_CHECK_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHECK_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src:
                "<path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"/><path d=\"M22 4 12 14.01l-3-3\"/>",
        }
    };
    pub const FEATHER_CHECK_SQUARE: Self = {
        Self { collection : & COLLECTION , name : "CHECK_SQUARE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m9 11 3 3L22 4\"/><path d=\"M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11\"/>" , }
    };
    pub const FEATHER_CHECK: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHECK",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M20 6 9 17l-5-5\"/>",
        }
    };
    pub const FEATHER_CHEVRON_DOWN: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRON_DOWN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m6 9 6 6 6-6\"/>",
        }
    };
    pub const FEATHER_CHEVRON_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRON_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m15 18-6-6 6-6\"/>",
        }
    };
    pub const FEATHER_CHEVRON_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRON_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m9 18 6-6-6-6\"/>",
        }
    };
    pub const FEATHER_CHEVRON_UP: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRON_UP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m18 15-6-6-6 6\"/>",
        }
    };
    pub const FEATHER_CHEVRONS_DOWN: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRONS_DOWN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m7 13 5 5 5-5M7 6l5 5 5-5\"/>",
        }
    };
    pub const FEATHER_CHEVRONS_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRONS_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m11 17-5-5 5-5m7 10-5-5 5-5\"/>",
        }
    };
    pub const FEATHER_CHEVRONS_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRONS_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m13 17 5-5-5-5M6 17l5-5-5-5\"/>",
        }
    };
    pub const FEATHER_CHEVRONS_UP: Self = {
        Self {
            collection: &COLLECTION,
            name: "CHEVRONS_UP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m17 11-5-5-5 5m10 7-5-5-5 5\"/>",
        }
    };
    pub const FEATHER_CHROME: Self = {
        Self { collection : & COLLECTION , name : "CHROME" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><circle cx=\"12\" cy=\"12\" r=\"4\"/><path d=\"M21.17 8H12M3.95 6.06 8.54 14m2.34 7.94L15.46 14\"/>" , }
    };
    pub const FEATHER_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/>",
        }
    };
    pub const FEATHER_CLIPBOARD: Self = {
        Self { collection : & COLLECTION , name : "CLIPBOARD" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"/><rect width=\"8\" height=\"4\" x=\"8\" y=\"2\" rx=\"1\" ry=\"1\"/>" , }
    };
    pub const FEATHER_CLOCK: Self = {
        Self {
            collection: &COLLECTION,
            name: "CLOCK",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 6v6l4 2\"/>",
        }
    };
    pub const FEATHER_CLOUD_DRIZZLE: Self = {
        Self { collection : & COLLECTION , name : "CLOUD_DRIZZLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M8 19v2m0-8v2m8 4v2m0-8v2m-4 6v2m0-8v2m8-.42A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25\"/>" , }
    };
    pub const FEATHER_CLOUD_LIGHTNING: Self = {
        Self { collection : & COLLECTION , name : "CLOUD_LIGHTNING" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9\"/><path d=\"m13 11-4 6h6l-4 6\"/>" , }
    };
    pub const FEATHER_CLOUD_OFF: Self = {
        Self { collection : & COLLECTION , name : "CLOUD_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3M1 1l22 22\"/>" , }
    };
    pub const FEATHER_CLOUD_RAIN: Self = {
        Self {
            collection: &COLLECTION,
            name: "CLOUD_RAIN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src:
                "<path d=\"M16 13v8m-8-8v8m4-6v8m8-6.42A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25\"/>",
        }
    };
    pub const FEATHER_CLOUD_SNOW: Self = {
        Self { collection : & COLLECTION , name : "CLOUD_SNOW" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25M8 16h.01M8 20h.01M12 18h.01M12 22h.01M16 16h.01M16 20h.01\"/>" , }
    };
    pub const FEATHER_CLOUD: Self = {
        Self {
            collection: &COLLECTION,
            name: "CLOUD",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10\"/>",
        }
    };
    pub const FEATHER_CODE: Self = {
        Self {
            collection: &COLLECTION,
            name: "CODE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m16 18 6-6-6-6M8 6l-6 6 6 6\"/>",
        }
    };
    pub const FEATHER_CODEPEN: Self = {
        Self { collection : & COLLECTION , name : "CODEPEN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m12 2 10 6.5v7L12 22 2 15.5v-7zm0 20v-6.5\"/><path d=\"m22 8.5-10 7-10-7\"/><path d=\"m2 15.5 10-7 10 7M12 2v6.5\"/>" , }
    };
    pub const FEATHER_CODESANDBOX: Self = {
        Self { collection : & COLLECTION , name : "CODESANDBOX" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16\"/><path d=\"m7.5 4.21 4.5 2.6 4.5-2.6m-9 15.58V14.6L3 12m18 0-4.5 2.6v5.19M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12\"/>" , }
    };
    pub const FEATHER_COFFEE: Self = {
        Self { collection : & COLLECTION , name : "COFFEE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M18 8h1a4 4 0 0 1 0 8h-1M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4zm4-7v3m4-3v3m4-3v3\"/>" , }
    };
    pub const FEATHER_COLUMNS: Self = {
        Self { collection : & COLLECTION , name : "COLUMNS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18\"/>" , }
    };
    pub const FEATHER_COMMAND: Self = {
        Self { collection : & COLLECTION , name : "COMMAND" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3\"/>" , }
    };
    pub const FEATHER_COMPASS: Self = {
        Self { collection : & COLLECTION , name : "COMPASS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m16.24 7.76-2.12 6.36-6.36 2.12 2.12-6.36z\"/>" , }
    };
    pub const FEATHER_COPY: Self = {
        Self { collection : & COLLECTION , name : "COPY" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"13\" height=\"13\" x=\"9\" y=\"9\" rx=\"2\" ry=\"2\"/><path d=\"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1\"/>" , }
    };
    pub const FEATHER_CORNER_DOWN_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_DOWN_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m9 10-5 5 5 5\"/><path d=\"M20 4v7a4 4 0 0 1-4 4H4\"/>",
        }
    };
    pub const FEATHER_CORNER_DOWN_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_DOWN_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m15 10 5 5-5 5\"/><path d=\"M4 4v7a4 4 0 0 0 4 4h12\"/>",
        }
    };
    pub const FEATHER_CORNER_LEFT_DOWN: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_LEFT_DOWN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m14 15-5 5-5-5\"/><path d=\"M20 4h-7a4 4 0 0 0-4 4v12\"/>",
        }
    };
    pub const FEATHER_CORNER_LEFT_UP: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_LEFT_UP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M14 9 9 4 4 9\"/><path d=\"M20 20h-7a4 4 0 0 1-4-4V4\"/>",
        }
    };
    pub const FEATHER_CORNER_RIGHT_DOWN: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_RIGHT_DOWN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m10 15 5 5 5-5\"/><path d=\"M4 4h7a4 4 0 0 1 4 4v12\"/>",
        }
    };
    pub const FEATHER_CORNER_RIGHT_UP: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_RIGHT_UP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m10 9 5-5 5 5\"/><path d=\"M4 20h7a4 4 0 0 0 4-4V4\"/>",
        }
    };
    pub const FEATHER_CORNER_UP_LEFT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_UP_LEFT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M9 14 4 9l5-5\"/><path d=\"M20 20v-7a4 4 0 0 0-4-4H4\"/>",
        }
    };
    pub const FEATHER_CORNER_UP_RIGHT: Self = {
        Self {
            collection: &COLLECTION,
            name: "CORNER_UP_RIGHT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m15 14 5-5-5-5\"/><path d=\"M4 20v-7a4 4 0 0 1 4-4h12\"/>",
        }
    };
    pub const FEATHER_CPU: Self = {
        Self { collection : & COLLECTION , name : "CPU" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"16\" height=\"16\" x=\"4\" y=\"4\" rx=\"2\" ry=\"2\"/><path d=\"M9 9h6v6H9zm0-8v3m6-3v3M9 20v3m6-3v3m5-14h3m-3 5h3M1 9h3m-3 5h3\"/>" , }
    };
    pub const FEATHER_CREDIT_CARD: Self = {
        Self { collection : & COLLECTION , name : "CREDIT_CARD" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"22\" height=\"16\" x=\"1\" y=\"4\" rx=\"2\" ry=\"2\"/><path d=\"M1 10h22\"/>" , }
    };
    pub const FEATHER_CROP: Self = {
        Self { collection : & COLLECTION , name : "CROP" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M6.13 1 6 16a2 2 0 0 0 2 2h15\"/><path d=\"M1 6.13 16 6a2 2 0 0 1 2 2v15\"/>" , }
    };
    pub const FEATHER_CROSSHAIR: Self = {
        Self { collection : & COLLECTION , name : "CROSSHAIR" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M22 12h-4M6 12H2m10-6V2m0 20v-4\"/>" , }
    };
    pub const FEATHER_DATABASE: Self = {
        Self { collection : & COLLECTION , name : "DATABASE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\"/><path d=\"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3\"/><path d=\"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5\"/>" , }
    };
    pub const FEATHER_DELETE: Self = {
        Self {
            collection: &COLLECTION,
            name: "DELETE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-3 5-6 6m0-6 6 6\"/>",
        }
    };
    pub const FEATHER_DISC: Self = {
        Self {
            collection: &COLLECTION,
            name: "DISC",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/>",
        }
    };
    pub const FEATHER_DIVIDE_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "DIVIDE_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M8 12h8m-4-4\"/><circle cx=\"12\" cy=\"12\" r=\"10\"/>",
        }
    };
    pub const FEATHER_DIVIDE_SQUARE: Self = {
        Self { collection : & COLLECTION , name : "DIVIDE_SQUARE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M8 12h8m-4-4\"/>" , }
    };
    pub const FEATHER_DIVIDE: Self = {
        Self { collection : & COLLECTION , name : "DIVIDE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"6\" r=\"2\"/><path d=\"M5 12h14\"/><circle cx=\"12\" cy=\"18\" r=\"2\"/>" , }
    };
    pub const FEATHER_DOLLAR_SIGN: Self = {
        Self {
            collection: &COLLECTION,
            name: "DOLLAR_SIGN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 1v22m5-18H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6\"/>",
        }
    };
    pub const FEATHER_DOWNLOAD_CLOUD: Self = {
        Self { collection : & COLLECTION , name : "DOWNLOAD_CLOUD" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m8 17 4 4 4-4m-4-5v9\"/><path d=\"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29\"/>" , }
    };
    pub const FEATHER_DOWNLOAD: Self = {
        Self {
            collection: &COLLECTION,
            name: "DOWNLOAD",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4m4-5 5 5 5-5m-5 5V3\"/>",
        }
    };
    pub const FEATHER_DRIBBBLE: Self = {
        Self { collection : & COLLECTION , name : "DRIBBBLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32\"/>" , }
    };
    pub const FEATHER_DROPLET: Self = {
        Self {
            collection: &COLLECTION,
            name: "DROPLET",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m12 2.69 5.66 5.66a8 8 0 1 1-11.31 0z\"/>",
        }
    };
    pub const FEATHER_EDIT_2: Self = {
        Self {
            collection: &COLLECTION,
            name: "EDIT_2",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5z\"/>",
        }
    };
    pub const FEATHER_EDIT_3: Self = {
        Self {
            collection: &COLLECTION,
            name: "EDIT_3",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 20h9M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4z\"/>",
        }
    };
    pub const FEATHER_EDIT: Self = {
        Self { collection : & COLLECTION , name : "EDIT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"/><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4z\"/>" , }
    };
    pub const FEATHER_EXTERNAL_LINK: Self = {
        Self { collection : & COLLECTION , name : "EXTERNAL_LINK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6m4-3h6v6m-11 5L21 3\"/>" , }
    };
    pub const FEATHER_EYE_OFF: Self = {
        Self { collection : & COLLECTION , name : "EYE_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24M1 1l22 22\"/>" , }
    };
    pub const FEATHER_EYE: Self = {
        Self { collection : & COLLECTION , name : "EYE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/>" , }
    };
    pub const FEATHER_FACEBOOK: Self = {
        Self {
            collection: &COLLECTION,
            name: "FACEBOOK",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z\"/>",
        }
    };
    pub const FEATHER_FAST_FORWARD: Self = {
        Self {
            collection: &COLLECTION,
            name: "FAST_FORWARD",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m13 19 9-7-9-7zM2 19l9-7-9-7z\"/>",
        }
    };
    pub const FEATHER_FEATHER: Self = {
        Self {
            collection: &COLLECTION,
            name: "FEATHER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5zM16 8 2 22m15.5-7H9\"/>",
        }
    };
    pub const FEATHER_FIGMA: Self = {
        Self { collection : & COLLECTION , name : "FIGMA" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5M12 2h3.5a3.5 3.5 0 1 1 0 7H12z\"/><path d=\"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0m-7 7A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0m0-7A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5\"/>" , }
    };
    pub const FEATHER_FILE_MINUS: Self = {
        Self { collection : & COLLECTION , name : "FILE_MINUS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"/><path d=\"M14 2v6h6M9 15h6\"/>" , }
    };
    pub const FEATHER_FILE_PLUS: Self = {
        Self { collection : & COLLECTION , name : "FILE_PLUS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"/><path d=\"M14 2v6h6m-8 10v-6m-3 3h6\"/>" , }
    };
    pub const FEATHER_FILE_TEXT: Self = {
        Self { collection : & COLLECTION , name : "FILE_TEXT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"/><path d=\"M14 2v6h6m-4 5H8m8 4H8m2-8H8\"/>" , }
    };
    pub const FEATHER_FILE: Self = {
        Self { collection : & COLLECTION , name : "FILE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z\"/><path d=\"M13 2v7h7\"/>" , }
    };
    pub const FEATHER_FILM: Self = {
        Self { collection : & COLLECTION , name : "FILM" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"20\" height=\"20\" x=\"2\" y=\"2\" rx=\"2.18\" ry=\"2.18\"/><path d=\"M7 2v20M17 2v20M2 12h20M2 7h5M2 17h5m10 0h5M17 7h5\"/>" , }
    };
    pub const FEATHER_FILTER: Self = {
        Self {
            collection: &COLLECTION,
            name: "FILTER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M22 3H2l8 9.46V19l4 2v-8.54z\"/>",
        }
    };
    pub const FEATHER_FLAG: Self = {
        Self {
            collection: &COLLECTION,
            name: "FLAG",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1zm0 7v-7\"/>",
        }
    };
    pub const FEATHER_FOLDER_MINUS: Self = {
        Self { collection : & COLLECTION , name : "FOLDER_MINUS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2zM9 14h6\"/>" , }
    };
    pub const FEATHER_FOLDER_PLUS: Self = {
        Self { collection : & COLLECTION , name : "FOLDER_PLUS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2zm-10-8v6m-3-3h6\"/>" , }
    };
    pub const FEATHER_FOLDER: Self = {
        Self { collection : & COLLECTION , name : "FOLDER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z\"/>" , }
    };
    pub const FEATHER_FRAMER: Self = {
        Self {
            collection: &COLLECTION,
            name: "FRAMER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7\"/>",
        }
    };
    pub const FEATHER_FROWN: Self = {
        Self { collection : & COLLECTION , name : "FROWN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M16 16s-1.5-2-4-2-4 2-4 2m1-7h.01M15 9h.01\"/>" , }
    };
    pub const FEATHER_GIFT: Self = {
        Self { collection : & COLLECTION , name : "GIFT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M20 12v10H4V12M2 7h20v5H2zm10 15V7m0 0H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7m0 0h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7\"/>" , }
    };
    pub const FEATHER_GIT_BRANCH: Self = {
        Self { collection : & COLLECTION , name : "GIT_BRANCH" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M6 3v12\"/><circle cx=\"18\" cy=\"6\" r=\"3\"/><circle cx=\"6\" cy=\"18\" r=\"3\"/><path d=\"M18 9a9 9 0 0 1-9 9\"/>" , }
    };
    pub const FEATHER_GIT_COMMIT: Self = {
        Self {
            collection: &COLLECTION,
            name: "GIT_COMMIT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"4\"/><path d=\"M1.05 12H7m10.01 0h5.95\"/>",
        }
    };
    pub const FEATHER_GIT_MERGE: Self = {
        Self { collection : & COLLECTION , name : "GIT_MERGE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"18\" cy=\"18\" r=\"3\"/><circle cx=\"6\" cy=\"6\" r=\"3\"/><path d=\"M6 21V9a9 9 0 0 0 9 9\"/>" , }
    };
    pub const FEATHER_GIT_PULL_REQUEST: Self = {
        Self { collection : & COLLECTION , name : "GIT_PULL_REQUEST" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"18\" cy=\"18\" r=\"3\"/><circle cx=\"6\" cy=\"6\" r=\"3\"/><path d=\"M13 6h3a2 2 0 0 1 2 2v7M6 9v12\"/>" , }
    };
    pub const FEATHER_GITHUB: Self = {
        Self { collection : & COLLECTION , name : "GITHUB" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22\"/>" , }
    };
    pub const FEATHER_GITLAB: Self = {
        Self { collection : & COLLECTION , name : "GITLAB" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22.65 14.39 12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94\"/>" , }
    };
    pub const FEATHER_GLOBE: Self = {
        Self { collection : & COLLECTION , name : "GLOBE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10\"/>" , }
    };
    pub const FEATHER_GRID: Self = {
        Self {
            collection: &COLLECTION,
            name: "GRID",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M3 3h7v7H3zm11 0h7v7h-7zm0 11h7v7h-7zM3 14h7v7H3z\"/>",
        }
    };
    pub const FEATHER_HARD_DRIVE: Self = {
        Self { collection : & COLLECTION , name : "HARD_DRIVE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22 12H2m3.45-6.89L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11M6 16h.01M10 16h.01\"/>" , }
    };
    pub const FEATHER_HASH: Self = {
        Self {
            collection: &COLLECTION,
            name: "HASH",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M4 9h16M4 15h16M10 3 8 21m8-18-2 18\"/>",
        }
    };
    pub const FEATHER_HEADPHONES: Self = {
        Self { collection : & COLLECTION , name : "HEADPHONES" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M3 18v-6a9 9 0 0 1 18 0v6\"/><path d=\"M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z\"/>" , }
    };
    pub const FEATHER_HEART: Self = {
        Self { collection : & COLLECTION , name : "HEART" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78\"/>" , }
    };
    pub const FEATHER_HELP_CIRCLE: Self = {
        Self { collection : & COLLECTION , name : "HELP_CIRCLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3m.08 4h.01\"/>" , }
    };
    pub const FEATHER_HEXAGON: Self = {
        Self { collection : & COLLECTION , name : "HEXAGON" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16\"/>" , }
    };
    pub const FEATHER_HOME: Self = {
        Self { collection : & COLLECTION , name : "HOME" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"/><path d=\"M9 22V12h6v10\"/>" , }
    };
    pub const FEATHER_IMAGE: Self = {
        Self { collection : & COLLECTION , name : "IMAGE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><circle cx=\"8.5\" cy=\"8.5\" r=\"1.5\"/><path d=\"m21 15-5-5L5 21\"/>" , }
    };
    pub const FEATHER_INBOX: Self = {
        Self { collection : & COLLECTION , name : "INBOX" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22 12h-6l-2 3h-4l-2-3H2\"/><path d=\"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11\"/>" , }
    };
    pub const FEATHER_INFO: Self = {
        Self {
            collection: &COLLECTION,
            name: "INFO",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 16v-4m0-4h.01\"/>",
        }
    };
    pub const FEATHER_INSTAGRAM: Self = {
        Self { collection : & COLLECTION , name : "INSTAGRAM" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"20\" height=\"20\" x=\"2\" y=\"2\" rx=\"5\" ry=\"5\"/><path d=\"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37m1.5-4.87h.01\"/>" , }
    };
    pub const FEATHER_ITALIC: Self = {
        Self {
            collection: &COLLECTION,
            name: "ITALIC",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M19 4h-9m4 16H5M15 4 9 20\"/>",
        }
    };
    pub const FEATHER_KEY: Self = {
        Self { collection : & COLLECTION , name : "KEY" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m21 2-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0 3 3L22 7l-3-3m-3.5 3.5L19 4\"/>" , }
    };
    pub const FEATHER_LAYERS: Self = {
        Self {
            collection: &COLLECTION,
            name: "LAYERS",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 2 2 7l10 5 10-5zM2 17l10 5 10-5M2 12l10 5 10-5\"/>",
        }
    };
    pub const FEATHER_LAYOUT: Self = {
        Self { collection : & COLLECTION , name : "LAYOUT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M3 9h18M9 21V9\"/>" , }
    };
    pub const FEATHER_LIFE_BUOY: Self = {
        Self { collection : & COLLECTION , name : "LIFE_BUOY" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><circle cx=\"12\" cy=\"12\" r=\"4\"/><path d=\"m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24m-4.24-9.9 4.24-4.24m-4.24 4.24 3.53-3.53M4.93 19.07l4.24-4.24\"/>" , }
    };
    pub const FEATHER_LINK_2: Self = {
        Self { collection : & COLLECTION , name : "LINK_2" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3m-1 5h8\"/>" , }
    };
    pub const FEATHER_LINK: Self = {
        Self { collection : & COLLECTION , name : "LINK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"/><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"/>" , }
    };
    pub const FEATHER_LINKEDIN: Self = {
        Self { collection : & COLLECTION , name : "LINKEDIN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6M2 9h4v12H2z\"/><circle cx=\"4\" cy=\"4\" r=\"2\"/>" , }
    };
    pub const FEATHER_LIST: Self = {
        Self {
            collection: &COLLECTION,
            name: "LIST",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01\"/>",
        }
    };
    pub const FEATHER_LOADER: Self = {
        Self { collection : & COLLECTION , name : "LOADER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M12 2v4m0 12v4M4.93 4.93l2.83 2.83m8.48 8.48 2.83 2.83M2 12h4m12 0h4M4.93 19.07l2.83-2.83m8.48-8.48 2.83-2.83\"/>" , }
    };
    pub const FEATHER_LOCK: Self = {
        Self { collection : & COLLECTION , name : "LOCK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"11\" x=\"3\" y=\"11\" rx=\"2\" ry=\"2\"/><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"/>" , }
    };
    pub const FEATHER_LOG_IN: Self = {
        Self {
            collection: &COLLECTION,
            name: "LOG_IN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4m-5-4 5-5-5-5m5 5H3\"/>",
        }
    };
    pub const FEATHER_LOG_OUT: Self = {
        Self {
            collection: &COLLECTION,
            name: "LOG_OUT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4m7 14 5-5-5-5m5 5H9\"/>",
        }
    };
    pub const FEATHER_MAIL: Self = {
        Self { collection : & COLLECTION , name : "MAIL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2\"/><path d=\"m22 6-10 7L2 6\"/>" , }
    };
    pub const FEATHER_MAP_PIN: Self = {
        Self { collection : & COLLECTION , name : "MAP_PIN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0\"/><circle cx=\"12\" cy=\"10\" r=\"3\"/>" , }
    };
    pub const FEATHER_MAP: Self = {
        Self {
            collection: &COLLECTION,
            name: "MAP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M1 6v16l7-4 8 4 7-4V2l-7 4-8-4zm7-4v16m8-12v16\"/>",
        }
    };
    pub const FEATHER_MAXIMIZE_2: Self = {
        Self {
            collection: &COLLECTION,
            name: "MAXIMIZE_2",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7\"/>",
        }
    };
    pub const FEATHER_MAXIMIZE: Self = {
        Self { collection : & COLLECTION , name : "MAXIMIZE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3\"/>" , }
    };
    pub const FEATHER_MEH: Self = {
        Self {
            collection: &COLLECTION,
            name: "MEH",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M8 15h8M9 9h.01M15 9h.01\"/>",
        }
    };
    pub const FEATHER_MENU: Self = {
        Self {
            collection: &COLLECTION,
            name: "MENU",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M3 12h18M3 6h18M3 18h18\"/>",
        }
    };
    pub const FEATHER_MESSAGE_CIRCLE: Self = {
        Self { collection : & COLLECTION , name : "MESSAGE_CIRCLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8z\"/>" , }
    };
    pub const FEATHER_MESSAGE_SQUARE: Self = {
        Self {
            collection: &COLLECTION,
            name: "MESSAGE_SQUARE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z\"/>",
        }
    };
    pub const FEATHER_MIC_OFF: Self = {
        Self { collection : & COLLECTION , name : "MIC_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m1 1 22 22M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6\"/><path d=\"M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23M12 19v4m-4 0h8\"/>" , }
    };
    pub const FEATHER_MIC: Self = {
        Self { collection : & COLLECTION , name : "MIC" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3\"/><path d=\"M19 10v2a7 7 0 0 1-14 0v-2m7 9v4m-4 0h8\"/>" , }
    };
    pub const FEATHER_MINIMIZE_2: Self = {
        Self {
            collection: &COLLECTION,
            name: "MINIMIZE_2",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M4 14h6v6m10-10h-6V4m0 6 7-7M3 21l7-7\"/>",
        }
    };
    pub const FEATHER_MINIMIZE: Self = {
        Self { collection : & COLLECTION , name : "MINIMIZE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3\"/>" , }
    };
    pub const FEATHER_MINUS_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "MINUS_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M8 12h8\"/>",
        }
    };
    pub const FEATHER_MINUS_SQUARE: Self = {
        Self { collection : & COLLECTION , name : "MINUS_SQUARE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M8 12h8\"/>" , }
    };
    pub const FEATHER_MINUS: Self = {
        Self {
            collection: &COLLECTION,
            name: "MINUS",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M5 12h14\"/>",
        }
    };
    pub const FEATHER_MONITOR: Self = {
        Self { collection : & COLLECTION , name : "MONITOR" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"20\" height=\"14\" x=\"2\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M8 21h8m-4-4v4\"/>" , }
    };
    pub const FEATHER_MOON: Self = {
        Self {
            collection: &COLLECTION,
            name: "MOON",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79\"/>",
        }
    };
    pub const FEATHER_MORE_HORIZONTAL: Self = {
        Self { collection : & COLLECTION , name : "MORE_HORIZONTAL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"1\"/><circle cx=\"19\" cy=\"12\" r=\"1\"/><circle cx=\"5\" cy=\"12\" r=\"1\"/>" , }
    };
    pub const FEATHER_MORE_VERTICAL: Self = {
        Self { collection : & COLLECTION , name : "MORE_VERTICAL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"1\"/><circle cx=\"12\" cy=\"5\" r=\"1\"/><circle cx=\"12\" cy=\"19\" r=\"1\"/>" , }
    };
    pub const FEATHER_MOUSE_POINTER: Self = {
        Self {
            collection: &COLLECTION,
            name: "MOUSE_POINTER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m3 3 7.07 16.97 2.51-7.39 7.39-2.51zm10 10 6 6\"/>",
        }
    };
    pub const FEATHER_MOVE: Self = {
        Self {
            collection: &COLLECTION,
            name: "MOVE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m5 9-3 3 3 3M9 5l3-3 3 3m0 14-3 3-3-3M19 9l3 3-3 3M2 12h20M12 2v20\"/>",
        }
    };
    pub const FEATHER_MUSIC: Self = {
        Self { collection : & COLLECTION , name : "MUSIC" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M9 18V5l12-2v13\"/><circle cx=\"6\" cy=\"18\" r=\"3\"/><circle cx=\"18\" cy=\"16\" r=\"3\"/>" , }
    };
    pub const FEATHER_NAVIGATION_2: Self = {
        Self {
            collection: &COLLECTION,
            name: "NAVIGATION_2",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m12 2 7 19-7-4-7 4z\"/>",
        }
    };
    pub const FEATHER_NAVIGATION: Self = {
        Self {
            collection: &COLLECTION,
            name: "NAVIGATION",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m3 11 19-9-9 19-2-8z\"/>",
        }
    };
    pub const FEATHER_OCTAGON: Self = {
        Self {
            collection: &COLLECTION,
            name: "OCTAGON",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86z\"/>",
        }
    };
    pub const FEATHER_PACKAGE: Self = {
        Self { collection : & COLLECTION , name : "PACKAGE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m16.5 9.4-9-5.19M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16\"/><path d=\"M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12\"/>" , }
    };
    pub const FEATHER_PAPERCLIP: Self = {
        Self { collection : & COLLECTION , name : "PAPERCLIP" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48\"/>" , }
    };
    pub const FEATHER_PAUSE_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "PAUSE_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M10 15V9m4 6V9\"/>",
        }
    };
    pub const FEATHER_PAUSE: Self = {
        Self {
            collection: &COLLECTION,
            name: "PAUSE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M6 4h4v16H6zm8 0h4v16h-4z\"/>",
        }
    };
    pub const FEATHER_PEN_TOOL: Self = {
        Self { collection : & COLLECTION , name : "PEN_TOOL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m12 19 7-7 3 3-7 7z\"/><path d=\"m18 13-1.5-7.5L2 2l3.5 14.5L13 18zM2 2l7.586 7.586\"/><circle cx=\"11\" cy=\"11\" r=\"2\"/>" , }
    };
    pub const FEATHER_PERCENT: Self = {
        Self { collection : & COLLECTION , name : "PERCENT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M19 5 5 19\"/><circle cx=\"6.5\" cy=\"6.5\" r=\"2.5\"/><circle cx=\"17.5\" cy=\"17.5\" r=\"2.5\"/>" , }
    };
    pub const FEATHER_PHONE_CALL: Self = {
        Self { collection : & COLLECTION , name : "PHONE_CALL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92\"/>" , }
    };
    pub const FEATHER_PHONE_FORWARDED: Self = {
        Self { collection : & COLLECTION , name : "PHONE_FORWARDED" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m19 1 4 4-4 4m-4-4h8m-1 11.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92\"/>" , }
    };
    pub const FEATHER_PHONE_INCOMING: Self = {
        Self { collection : & COLLECTION , name : "PHONE_INCOMING" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 2v6h6m1-7-7 7m6 8.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92\"/>" , }
    };
    pub const FEATHER_PHONE_MISSED: Self = {
        Self { collection : & COLLECTION , name : "PHONE_MISSED" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m23 1-6 6m0-6 6 6m-1 9.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92\"/>" , }
    };
    pub const FEATHER_PHONE_OFF: Self = {
        Self { collection : & COLLECTION , name : "PHONE_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91M23 1 1 23\"/>" , }
    };
    pub const FEATHER_PHONE_OUTGOING: Self = {
        Self { collection : & COLLECTION , name : "PHONE_OUTGOING" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M23 7V1h-6m-1 7 7-7m-1 15.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92\"/>" , }
    };
    pub const FEATHER_PHONE: Self = {
        Self { collection : & COLLECTION , name : "PHONE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92\"/>" , }
    };
    pub const FEATHER_PIE_CHART: Self = {
        Self { collection : & COLLECTION , name : "PIE_CHART" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M21.21 15.89A10 10 0 1 1 8 2.83\"/><path d=\"M22 12A10 10 0 0 0 12 2v10z\"/>" , }
    };
    pub const FEATHER_PLAY_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "PLAY_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m10 8 6 4-6 4z\"/>",
        }
    };
    pub const FEATHER_PLAY: Self = {
        Self {
            collection: &COLLECTION,
            name: "PLAY",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m5 3 14 9-14 9z\"/>",
        }
    };
    pub const FEATHER_PLUS_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "PLUS_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 8v8m-4-4h8\"/>",
        }
    };
    pub const FEATHER_PLUS_SQUARE: Self = {
        Self { collection : & COLLECTION , name : "PLUS_SQUARE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M12 8v8m-4-4h8\"/>" , }
    };
    pub const FEATHER_PLUS: Self = {
        Self {
            collection: &COLLECTION,
            name: "PLUS",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 5v14m-7-7h14\"/>",
        }
    };
    pub const FEATHER_POCKET: Self = {
        Self { collection : & COLLECTION , name : "POCKET" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2\"/><path d=\"m8 10 4 4 4-4\"/>" , }
    };
    pub const FEATHER_POWER: Self = {
        Self {
            collection: &COLLECTION,
            name: "POWER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M18.36 6.64a9 9 0 1 1-12.73 0M12 2v10\"/>",
        }
    };
    pub const FEATHER_PRINTER: Self = {
        Self { collection : & COLLECTION , name : "PRINTER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M6 9V2h12v7M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2\"/><path d=\"M6 14h12v8H6z\"/>" , }
    };
    pub const FEATHER_RADIO: Self = {
        Self { collection : & COLLECTION , name : "RADIO" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"2\"/><path d=\"M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14\"/>" , }
    };
    pub const FEATHER_REFRESH_CCW: Self = {
        Self { collection : & COLLECTION , name : "REFRESH_CCW" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M1 4v6h6m16 10v-6h-6\"/><path d=\"M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4-4.64 4.36A9 9 0 0 1 3.51 15\"/>" , }
    };
    pub const FEATHER_REFRESH_CW: Self = {
        Self { collection : & COLLECTION , name : "REFRESH_CW" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M23 4v6h-6M1 20v-6h6\"/><path d=\"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15\"/>" , }
    };
    pub const FEATHER_REPEAT: Self = {
        Self { collection : & COLLECTION , name : "REPEAT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m17 1 4 4-4 4\"/><path d=\"M3 11V9a4 4 0 0 1 4-4h14M7 23l-4-4 4-4\"/><path d=\"M21 13v2a4 4 0 0 1-4 4H3\"/>" , }
    };
    pub const FEATHER_REWIND: Self = {
        Self {
            collection: &COLLECTION,
            name: "REWIND",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m11 19-9-7 9-7zm11 0-9-7 9-7z\"/>",
        }
    };
    pub const FEATHER_ROTATE_CCW: Self = {
        Self {
            collection: &COLLECTION,
            name: "ROTATE_CCW",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M1 4v6h6\"/><path d=\"M3.51 15a9 9 0 1 0 2.13-9.36L1 10\"/>",
        }
    };
    pub const FEATHER_ROTATE_CW: Self = {
        Self {
            collection: &COLLECTION,
            name: "ROTATE_CW",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M23 4v6h-6\"/><path d=\"M20.49 15a9 9 0 1 1-2.12-9.36L23 10\"/>",
        }
    };
    pub const FEATHER_RSS: Self = {
        Self { collection : & COLLECTION , name : "RSS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M4 11a9 9 0 0 1 9 9M4 4a16 16 0 0 1 16 16\"/><circle cx=\"5\" cy=\"19\" r=\"1\"/>" , }
    };
    pub const FEATHER_SAVE: Self = {
        Self { collection : & COLLECTION , name : "SAVE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2\"/><path d=\"M17 21v-8H7v8M7 3v5h8\"/>" , }
    };
    pub const FEATHER_SCISSORS: Self = {
        Self { collection : & COLLECTION , name : "SCISSORS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"6\" cy=\"6\" r=\"3\"/><circle cx=\"6\" cy=\"18\" r=\"3\"/><path d=\"M20 4 8.12 15.88m6.35-1.4L20 20M8.12 8.12 12 12\"/>" , }
    };
    pub const FEATHER_SEARCH: Self = {
        Self {
            collection: &COLLECTION,
            name: "SEARCH",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"11\" cy=\"11\" r=\"8\"/><path d=\"m21 21-4.35-4.35\"/>",
        }
    };
    pub const FEATHER_SEND: Self = {
        Self {
            collection: &COLLECTION,
            name: "SEND",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M22 2 11 13M22 2l-7 20-4-9-9-4z\"/>",
        }
    };
    pub const FEATHER_SERVER: Self = {
        Self { collection : & COLLECTION , name : "SERVER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"20\" height=\"8\" x=\"2\" y=\"2\" rx=\"2\" ry=\"2\"/><rect width=\"20\" height=\"8\" x=\"2\" y=\"14\" rx=\"2\" ry=\"2\"/><path d=\"M6 6h.01M6 18h.01\"/>" , }
    };
    pub const FEATHER_SETTINGS: Self = {
        Self { collection : & COLLECTION , name : "SETTINGS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"3\"/><path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1\"/>" , }
    };
    pub const FEATHER_SHARE_2: Self = {
        Self { collection : & COLLECTION , name : "SHARE_2" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"18\" cy=\"5\" r=\"3\"/><circle cx=\"6\" cy=\"12\" r=\"3\"/><circle cx=\"18\" cy=\"19\" r=\"3\"/><path d=\"m8.59 13.51 6.83 3.98m-.01-10.98-6.82 3.98\"/>" , }
    };
    pub const FEATHER_SHARE: Self = {
        Self {
            collection: &COLLECTION,
            name: "SHARE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8m-4-6-4-4-4 4m4-4v13\"/>",
        }
    };
    pub const FEATHER_SHIELD_OFF: Self = {
        Self { collection : & COLLECTION , name : "SHIELD_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18M4.73 4.73 4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38M1 1l22 22\"/>" , }
    };
    pub const FEATHER_SHIELD: Self = {
        Self {
            collection: &COLLECTION,
            name: "SHIELD",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10\"/>",
        }
    };
    pub const FEATHER_SHOPPING_BAG: Self = {
        Self { collection : & COLLECTION , name : "SHOPPING_BAG" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4zM3 6h18\"/><path d=\"M16 10a4 4 0 0 1-8 0\"/>" , }
    };
    pub const FEATHER_SHOPPING_CART: Self = {
        Self { collection : & COLLECTION , name : "SHOPPING_CART" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"9\" cy=\"21\" r=\"1\"/><circle cx=\"20\" cy=\"21\" r=\"1\"/><path d=\"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6\"/>" , }
    };
    pub const FEATHER_SHUFFLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "SHUFFLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M16 3h5v5M4 20 21 3m0 13v5h-5m-1-6 6 6M4 4l5 5\"/>",
        }
    };
    pub const FEATHER_SIDEBAR: Self = {
        Self { collection : & COLLECTION , name : "SIDEBAR" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M9 3v18\"/>" , }
    };
    pub const FEATHER_SKIP_BACK: Self = {
        Self {
            collection: &COLLECTION,
            name: "SKIP_BACK",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M19 20 9 12l10-8zM5 19V5\"/>",
        }
    };
    pub const FEATHER_SKIP_FORWARD: Self = {
        Self {
            collection: &COLLECTION,
            name: "SKIP_FORWARD",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m5 4 10 8-10 8zm14 1v14\"/>",
        }
    };
    pub const FEATHER_SLACK: Self = {
        Self { collection : & COLLECTION , name : "SLACK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5m6 0H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5m-11 4c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5m-6 0H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14m10.5.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5m1.5 4.5H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5\"/>" , }
    };
    pub const FEATHER_SLASH: Self = {
        Self {
            collection: &COLLECTION,
            name: "SLASH",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m4.93 4.93 14.14 14.14\"/>",
        }
    };
    pub const FEATHER_SLIDERS: Self = {
        Self {
            collection: &COLLECTION,
            name: "SLIDERS",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M4 21v-7m0-4V3m8 18v-9m0-4V3m8 18v-5m0-4V3M1 14h6m2-6h6m2 8h6\"/>",
        }
    };
    pub const FEATHER_SMARTPHONE: Self = {
        Self { collection : & COLLECTION , name : "SMARTPHONE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"14\" height=\"20\" x=\"5\" y=\"2\" rx=\"2\" ry=\"2\"/><path d=\"M12 18h.01\"/>" , }
    };
    pub const FEATHER_SMILE: Self = {
        Self { collection : & COLLECTION , name : "SMILE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01\"/>" , }
    };
    pub const FEATHER_SPEAKER: Self = {
        Self { collection : & COLLECTION , name : "SPEAKER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"16\" height=\"20\" x=\"4\" y=\"2\" rx=\"2\" ry=\"2\"/><circle cx=\"12\" cy=\"14\" r=\"4\"/><path d=\"M12 6h.01\"/>" , }
    };
    pub const FEATHER_SQUARE: Self = {
        Self {
            collection: &COLLECTION,
            name: "SQUARE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/>",
        }
    };
    pub const FEATHER_STAR: Self = {
        Self { collection : & COLLECTION , name : "STAR" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z\"/>" , }
    };
    pub const FEATHER_STOP_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "STOP_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M9 9h6v6H9z\"/>",
        }
    };
    pub const FEATHER_SUN: Self = {
        Self { collection : & COLLECTION , name : "SUN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"5\"/><path d=\"M12 1v2m0 18v2M4.22 4.22l1.42 1.42m12.72 12.72 1.42 1.42M1 12h2m18 0h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42\"/>" , }
    };
    pub const FEATHER_SUNRISE: Self = {
        Self { collection : & COLLECTION , name : "SUNRISE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M17 18a5 5 0 0 0-10 0m5-16v7m-7.78 1.22 1.42 1.42M1 18h2m18 0h2m-4.64-6.36 1.42-1.42M23 22H1M8 6l4-4 4 4\"/>" , }
    };
    pub const FEATHER_SUNSET: Self = {
        Self { collection : & COLLECTION , name : "SUNSET" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M17 18a5 5 0 0 0-10 0m5-9V2m-7.78 8.22 1.42 1.42M1 18h2m18 0h2m-4.64-6.36 1.42-1.42M23 22H1M16 5l-4 4-4-4\"/>" , }
    };
    pub const FEATHER_TABLE: Self = {
        Self { collection : & COLLECTION , name : "TABLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18\"/>" , }
    };
    pub const FEATHER_TABLET: Self = {
        Self { collection : & COLLECTION , name : "TABLET" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"16\" height=\"20\" x=\"4\" y=\"2\" rx=\"2\" ry=\"2\"/><path d=\"M12 18h.01\"/>" , }
    };
    pub const FEATHER_TAG: Self = {
        Self { collection : & COLLECTION , name : "TAG" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m20.59 13.41-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82M7 7h.01\"/>" , }
    };
    pub const FEATHER_TARGET: Self = {
        Self { collection : & COLLECTION , name : "TARGET" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"10\"/><circle cx=\"12\" cy=\"12\" r=\"6\"/><circle cx=\"12\" cy=\"12\" r=\"2\"/>" , }
    };
    pub const FEATHER_TERMINAL: Self = {
        Self {
            collection: &COLLECTION,
            name: "TERMINAL",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m4 17 6-6-6-6m8 14h8\"/>",
        }
    };
    pub const FEATHER_THERMOMETER: Self = {
        Self {
            collection: &COLLECTION,
            name: "THERMOMETER",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0\"/>",
        }
    };
    pub const FEATHER_THUMBS_DOWN: Self = {
        Self { collection : & COLLECTION , name : "THUMBS_DOWN" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"/>" , }
    };
    pub const FEATHER_THUMBS_UP: Self = {
        Self { collection : & COLLECTION , name : "THUMBS_UP" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"/>" , }
    };
    pub const FEATHER_TOGGLE_LEFT: Self = {
        Self { collection : & COLLECTION , name : "TOGGLE_LEFT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"22\" height=\"14\" x=\"1\" y=\"5\" rx=\"7\" ry=\"7\"/><circle cx=\"8\" cy=\"12\" r=\"3\"/>" , }
    };
    pub const FEATHER_TOGGLE_RIGHT: Self = {
        Self { collection : & COLLECTION , name : "TOGGLE_RIGHT" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"22\" height=\"14\" x=\"1\" y=\"5\" rx=\"7\" ry=\"7\"/><circle cx=\"16\" cy=\"12\" r=\"3\"/>" , }
    };
    pub const FEATHER_TOOL: Self = {
        Self { collection : & COLLECTION , name : "TOOL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z\"/>" , }
    };
    pub const FEATHER_TRASH_2: Self = {
        Self { collection : & COLLECTION , name : "TRASH_2" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M3 6h18m-2 0v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2m-6 5v6m4-6v6\"/>" , }
    };
    pub const FEATHER_TRASH: Self = {
        Self { collection : & COLLECTION , name : "TRASH" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M3 6h18m-2 0v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\"/>" , }
    };
    pub const FEATHER_TRELLO: Self = {
        Self { collection : & COLLECTION , name : "TRELLO" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"M7 7h3v9H7zm7 0h3v5h-3z\"/>" , }
    };
    pub const FEATHER_TRENDING_DOWN: Self = {
        Self {
            collection: &COLLECTION,
            name: "TRENDING_DOWN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m23 18-9.5-9.5-5 5L1 6\"/><path d=\"M17 18h6v-6\"/>",
        }
    };
    pub const FEATHER_TRENDING_UP: Self = {
        Self {
            collection: &COLLECTION,
            name: "TRENDING_UP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"m23 6-9.5 9.5-5-5L1 18\"/><path d=\"M17 6h6v6\"/>",
        }
    };
    pub const FEATHER_TRIANGLE: Self = {
        Self { collection : & COLLECTION , name : "TRIANGLE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0\"/>" , }
    };
    pub const FEATHER_TRUCK: Self = {
        Self { collection : & COLLECTION , name : "TRUCK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M1 3h15v13H1zm15 5h4l3 3v5h-7z\"/><circle cx=\"5.5\" cy=\"18.5\" r=\"2.5\"/><circle cx=\"18.5\" cy=\"18.5\" r=\"2.5\"/>" , }
    };
    pub const FEATHER_TV: Self = {
        Self { collection : & COLLECTION , name : "TV" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"20\" height=\"15\" x=\"2\" y=\"7\" rx=\"2\" ry=\"2\"/><path d=\"m17 2-5 5-5-5\"/>" , }
    };
    pub const FEATHER_TWITCH: Self = {
        Self {
            collection: &COLLECTION,
            name: "TWITCH",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 2H3v16h5v4l4-4h5l4-4zm-10 9V7m5 4V7\"/>",
        }
    };
    pub const FEATHER_TWITTER: Self = {
        Self { collection : & COLLECTION , name : "TWITTER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3\"/>" , }
    };
    pub const FEATHER_TYPE: Self = {
        Self {
            collection: &COLLECTION,
            name: "TYPE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M4 7V4h16v3M9 20h6M12 4v16\"/>",
        }
    };
    pub const FEATHER_UMBRELLA: Self = {
        Self {
            collection: &COLLECTION,
            name: "UMBRELLA",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7\"/>",
        }
    };
    pub const FEATHER_UNDERLINE: Self = {
        Self {
            collection: &COLLECTION,
            name: "UNDERLINE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3M4 21h16\"/>",
        }
    };
    pub const FEATHER_UNLOCK: Self = {
        Self { collection : & COLLECTION , name : "UNLOCK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"11\" x=\"3\" y=\"11\" rx=\"2\" ry=\"2\"/><path d=\"M7 11V7a5 5 0 0 1 9.9-1\"/>" , }
    };
    pub const FEATHER_UPLOAD_CLOUD: Self = {
        Self { collection : & COLLECTION , name : "UPLOAD_CLOUD" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m16 16-4-4-4 4m4-4v9\"/><path d=\"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3\"/><path d=\"m16 16-4-4-4 4\"/>" , }
    };
    pub const FEATHER_UPLOAD: Self = {
        Self {
            collection: &COLLECTION,
            name: "UPLOAD",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4m14-7-5-5-5 5m5-5v12\"/>",
        }
    };
    pub const FEATHER_USER_CHECK: Self = {
        Self { collection : & COLLECTION , name : "USER_CHECK" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"/><circle cx=\"8.5\" cy=\"7\" r=\"4\"/><path d=\"m17 11 2 2 4-4\"/>" , }
    };
    pub const FEATHER_USER_MINUS: Self = {
        Self { collection : & COLLECTION , name : "USER_MINUS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"/><circle cx=\"8.5\" cy=\"7\" r=\"4\"/><path d=\"M23 11h-6\"/>" , }
    };
    pub const FEATHER_USER_PLUS: Self = {
        Self { collection : & COLLECTION , name : "USER_PLUS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"/><circle cx=\"8.5\" cy=\"7\" r=\"4\"/><path d=\"M20 8v6m3-3h-6\"/>" , }
    };
    pub const FEATHER_USER_X: Self = {
        Self { collection : & COLLECTION , name : "USER_X" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"/><circle cx=\"8.5\" cy=\"7\" r=\"4\"/><path d=\"m18 8 5 5m0-5-5 5\"/>" , }
    };
    pub const FEATHER_USER: Self = {
        Self { collection : & COLLECTION , name : "USER" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\"/><circle cx=\"12\" cy=\"7\" r=\"4\"/>" , }
    };
    pub const FEATHER_USERS: Self = {
        Self { collection : & COLLECTION , name : "USERS" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"/><circle cx=\"9\" cy=\"7\" r=\"4\"/><path d=\"M23 21v-2a4 4 0 0 0-3-3.87m-4-12a4 4 0 0 1 0 7.75\"/>" , }
    };
    pub const FEATHER_VIDEO_OFF: Self = {
        Self { collection : & COLLECTION , name : "VIDEO_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10M1 1l22 22\"/>" , }
    };
    pub const FEATHER_VIDEO: Self = {
        Self { collection : & COLLECTION , name : "VIDEO" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m23 7-7 5 7 5z\"/><rect width=\"15\" height=\"14\" x=\"1\" y=\"5\" rx=\"2\" ry=\"2\"/>" , }
    };
    pub const FEATHER_VOICEMAIL: Self = {
        Self { collection : & COLLECTION , name : "VOICEMAIL" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"5.5\" cy=\"11.5\" r=\"4.5\"/><circle cx=\"18.5\" cy=\"11.5\" r=\"4.5\"/><path d=\"M5.5 16h13\"/>" , }
    };
    pub const FEATHER_VOLUME_1: Self = {
        Self {
            collection: &COLLECTION,
            name: "VOLUME_1",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M11 5 6 9H2v6h4l5 4zm4.54 3.46a5 5 0 0 1 0 7.07\"/>",
        }
    };
    pub const FEATHER_VOLUME_2: Self = {
        Self { collection : & COLLECTION , name : "VOLUME_2" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M11 5 6 9H2v6h4l5 4zm8.07-.07a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07\"/>" , }
    };
    pub const FEATHER_VOLUME_X: Self = {
        Self {
            collection: &COLLECTION,
            name: "VOLUME_X",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M11 5 6 9H2v6h4l5 4zm12 4-6 6m0-6 6 6\"/>",
        }
    };
    pub const FEATHER_VOLUME: Self = {
        Self {
            collection: &COLLECTION,
            name: "VOLUME",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M11 5 6 9H2v6h4l5 4z\"/>",
        }
    };
    pub const FEATHER_WATCH: Self = {
        Self { collection : & COLLECTION , name : "WATCH" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<circle cx=\"12\" cy=\"12\" r=\"7\"/><path d=\"M12 9v3l1.5 1.5m3.01 3.85-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83\"/>" , }
    };
    pub const FEATHER_WIFI_OFF: Self = {
        Self { collection : & COLLECTION , name : "WIFI_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"m1 1 22 22m-6.28-11.94A10.94 10.94 0 0 1 19 12.55m-14 0a10.94 10.94 0 0 1 5.17-2.39m.54-5.11A16 16 0 0 1 22.58 9M1.42 9a15.91 15.91 0 0 1 4.7-2.88m2.41 9.99a6 6 0 0 1 6.95 0M12 20h.01\"/>" , }
    };
    pub const FEATHER_WIFI: Self = {
        Self { collection : & COLLECTION , name : "WIFI" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M5 12.55a11 11 0 0 1 14.08 0M1.42 9a16 16 0 0 1 21.16 0M8.53 16.11a6 6 0 0 1 6.95 0M12 20h.01\"/>" , }
    };
    pub const FEATHER_WIND: Self = {
        Self { collection : & COLLECTION , name : "WIND" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2\"/>" , }
    };
    pub const FEATHER_X_CIRCLE: Self = {
        Self {
            collection: &COLLECTION,
            name: "X_CIRCLE",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m15 9-6 6m0-6 6 6\"/>",
        }
    };
    pub const FEATHER_X_OCTAGON: Self = {
        Self { collection : & COLLECTION , name : "X_OCTAGON" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86zM15 9l-6 6m0-6 6 6\"/>" , }
    };
    pub const FEATHER_X_SQUARE: Self = {
        Self { collection : & COLLECTION , name : "X_SQUARE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\" ry=\"2\"/><path d=\"m9 9 6 6m0-6-6 6\"/>" , }
    };
    pub const FEATHER_X: Self = {
        Self {
            collection: &COLLECTION,
            name: "X",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M18 6 6 18M6 6l12 12\"/>",
        }
    };
    pub const FEATHER_YOUTUBE: Self = {
        Self { collection : & COLLECTION , name : "YOUTUBE" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33\"/><path d=\"m9.75 15.02 5.75-3.27-5.75-3.27z\"/>" , }
    };
    pub const FEATHER_ZAP_OFF: Self = {
        Self { collection : & COLLECTION , name : "ZAP_OFF" , view_box : Some ("0 0 24 24") , fill : Some ("none") , stroke : Some ("currentColor") , stroke_width : Some ("2") , stroke_linecap : Some ("round") , stroke_linejoin : Some ("round") , src : "<path d=\"M12.41 6.75 13 2l-2.43 2.92m8 7.99L21 10h-5.34M8 8l-5 6h9l-1 8 5-6M1 1l22 22\"/>" , }
    };
    pub const FEATHER_ZAP: Self = {
        Self {
            collection: &COLLECTION,
            name: "ZAP",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<path d=\"M13 2 3 14h9l-1 8 10-12h-9z\"/>",
        }
    };
    pub const FEATHER_ZOOM_IN: Self = {
        Self {
            collection: &COLLECTION,
            name: "ZOOM_IN",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src:
                "<circle cx=\"11\" cy=\"11\" r=\"8\"/><path d=\"m21 21-4.35-4.35M11 8v6m-3-3h6\"/>",
        }
    };
    pub const FEATHER_ZOOM_OUT: Self = {
        Self {
            collection: &COLLECTION,
            name: "ZOOM_OUT",
            view_box: Some("0 0 24 24"),
            fill: Some("none"),
            stroke: Some("currentColor"),
            stroke_width: Some("2"),
            stroke_linecap: Some("round"),
            stroke_linejoin: Some("round"),
            src: "<circle cx=\"11\" cy=\"11\" r=\"8\"/><path d=\"m21 21-4.35-4.35M8 11h6\"/>",
        }
    };
}