dioxus-icons 0.1.0

Lucide icons for Dioxus, one component per icon.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
//! Lucide v1.14.0 icons generated by dioxus-icons-codegen.
//!
// @generated by dioxus-icons-codegen. Do not edit.

pub mod a_arrow_down;
pub mod a_arrow_up;
pub mod a_large_small;
pub mod accessibility;
pub mod activity;
pub mod air_vent;
pub mod airplay;
pub mod alarm_clock;
pub mod alarm_clock_check;
pub mod alarm_clock_minus;
pub mod alarm_clock_off;
pub mod alarm_clock_plus;
pub mod alarm_smoke;
pub mod album;
pub mod align_center_horizontal;
pub mod align_center_vertical;
pub mod align_end_horizontal;
pub mod align_end_vertical;
pub mod align_horizontal_distribute_center;
pub mod align_horizontal_distribute_end;
pub mod align_horizontal_distribute_start;
pub mod align_horizontal_justify_center;
pub mod align_horizontal_justify_end;
pub mod align_horizontal_justify_start;
pub mod align_horizontal_space_around;
pub mod align_horizontal_space_between;
pub mod align_start_horizontal;
pub mod align_start_vertical;
pub mod align_vertical_distribute_center;
pub mod align_vertical_distribute_end;
pub mod align_vertical_distribute_start;
pub mod align_vertical_justify_center;
pub mod align_vertical_justify_end;
pub mod align_vertical_justify_start;
pub mod align_vertical_space_around;
pub mod align_vertical_space_between;
pub mod ambulance;
pub mod ampersand;
pub mod ampersands;
pub mod amphora;
pub mod anchor;
pub mod angry;
pub mod annoyed;
pub mod antenna;
pub mod anvil;
pub mod aperture;
pub mod app_window;
pub mod app_window_mac;
pub mod apple;
pub mod archive;
pub mod archive_restore;
pub mod archive_x;
pub mod armchair;
pub mod arrow_big_down;
pub mod arrow_big_down_dash;
pub mod arrow_big_left;
pub mod arrow_big_left_dash;
pub mod arrow_big_right;
pub mod arrow_big_right_dash;
pub mod arrow_big_up;
pub mod arrow_big_up_dash;
pub mod arrow_down;
pub mod arrow_down_0_1;
pub mod arrow_down_1_0;
pub mod arrow_down_a_z;
pub mod arrow_down_from_line;
pub mod arrow_down_left;
pub mod arrow_down_narrow_wide;
pub mod arrow_down_right;
pub mod arrow_down_to_dot;
pub mod arrow_down_to_line;
pub mod arrow_down_up;
pub mod arrow_down_wide_narrow;
pub mod arrow_down_z_a;
pub mod arrow_left;
pub mod arrow_left_from_line;
pub mod arrow_left_right;
pub mod arrow_left_to_line;
pub mod arrow_right;
pub mod arrow_right_from_line;
pub mod arrow_right_left;
pub mod arrow_right_to_line;
pub mod arrow_up;
pub mod arrow_up_0_1;
pub mod arrow_up_1_0;
pub mod arrow_up_a_z;
pub mod arrow_up_down;
pub mod arrow_up_from_dot;
pub mod arrow_up_from_line;
pub mod arrow_up_left;
pub mod arrow_up_narrow_wide;
pub mod arrow_up_right;
pub mod arrow_up_to_line;
pub mod arrow_up_wide_narrow;
pub mod arrow_up_z_a;
pub mod arrows_up_from_line;
pub mod asterisk;
pub mod astroid;
pub mod at_sign;
pub mod atom;
pub mod audio_lines;
pub mod audio_waveform;
pub mod award;
pub mod axe;
pub mod axis_3d;
pub mod baby;
pub mod backpack;
pub mod badge;
pub mod badge_alert;
pub mod badge_cent;
pub mod badge_check;
pub mod badge_dollar_sign;
pub mod badge_euro;
pub mod badge_indian_rupee;
pub mod badge_info;
pub mod badge_japanese_yen;
pub mod badge_minus;
pub mod badge_percent;
pub mod badge_plus;
pub mod badge_pound_sterling;
pub mod badge_question_mark;
pub mod badge_russian_ruble;
pub mod badge_swiss_franc;
pub mod badge_turkish_lira;
pub mod badge_x;
pub mod baggage_claim;
pub mod balloon;
pub mod ban;
pub mod banana;
pub mod bandage;
pub mod banknote;
pub mod banknote_arrow_down;
pub mod banknote_arrow_up;
pub mod banknote_x;
pub mod barcode;
pub mod barrel;
pub mod baseline;
pub mod bath;
pub mod battery;
pub mod battery_charging;
pub mod battery_full;
pub mod battery_low;
pub mod battery_medium;
pub mod battery_plus;
pub mod battery_warning;
pub mod beaker;
pub mod bean;
pub mod bean_off;
pub mod bed;
pub mod bed_double;
pub mod bed_single;
pub mod beef;
pub mod beef_off;
pub mod beer;
pub mod beer_off;
pub mod bell;
pub mod bell_check;
pub mod bell_dot;
pub mod bell_electric;
pub mod bell_minus;
pub mod bell_off;
pub mod bell_plus;
pub mod bell_ring;
pub mod between_horizontal_end;
pub mod between_horizontal_start;
pub mod between_vertical_end;
pub mod between_vertical_start;
pub mod biceps_flexed;
pub mod bike;
pub mod binary;
pub mod binoculars;
pub mod biohazard;
pub mod bird;
pub mod birdhouse;
pub mod bitcoin;
pub mod blend;
pub mod blinds;
pub mod blocks;
pub mod bluetooth;
pub mod bluetooth_connected;
pub mod bluetooth_off;
pub mod bluetooth_searching;
pub mod bold;
pub mod bolt;
pub mod bomb;
pub mod bone;
pub mod book;
pub mod book_a;
pub mod book_alert;
pub mod book_audio;
pub mod book_check;
pub mod book_copy;
pub mod book_dashed;
pub mod book_down;
pub mod book_headphones;
pub mod book_heart;
pub mod book_image;
pub mod book_key;
pub mod book_lock;
pub mod book_marked;
pub mod book_minus;
pub mod book_open;
pub mod book_open_check;
pub mod book_open_text;
pub mod book_plus;
pub mod book_search;
pub mod book_text;
pub mod book_type;
pub mod book_up;
pub mod book_up_2;
pub mod book_user;
pub mod book_x;
pub mod bookmark;
pub mod bookmark_check;
pub mod bookmark_minus;
pub mod bookmark_off;
pub mod bookmark_plus;
pub mod bookmark_x;
pub mod boom_box;
pub mod bot;
pub mod bot_message_square;
pub mod bot_off;
pub mod bottle_wine;
pub mod bow_arrow;
pub mod r#box;
pub mod boxes;
pub mod braces;
pub mod brackets;
pub mod brain;
pub mod brain_circuit;
pub mod brain_cog;
pub mod brick_wall;
pub mod brick_wall_fire;
pub mod brick_wall_shield;
pub mod briefcase;
pub mod briefcase_business;
pub mod briefcase_conveyor_belt;
pub mod briefcase_medical;
pub mod bring_to_front;
pub mod brush;
pub mod brush_cleaning;
pub mod bubbles;
pub mod bug;
pub mod bug_off;
pub mod bug_play;
pub mod building;
pub mod building_2;
pub mod bus;
pub mod bus_front;
pub mod cable;
pub mod cable_car;
pub mod cake;
pub mod cake_slice;
pub mod calculator;
pub mod calendar;
pub mod calendar_1;
pub mod calendar_arrow_down;
pub mod calendar_arrow_up;
pub mod calendar_check;
pub mod calendar_check_2;
pub mod calendar_clock;
pub mod calendar_cog;
pub mod calendar_days;
pub mod calendar_fold;
pub mod calendar_heart;
pub mod calendar_minus;
pub mod calendar_minus_2;
pub mod calendar_off;
pub mod calendar_plus;
pub mod calendar_plus_2;
pub mod calendar_range;
pub mod calendar_search;
pub mod calendar_sync;
pub mod calendar_x;
pub mod calendar_x_2;
pub mod calendars;
pub mod camera;
pub mod camera_off;
pub mod candy;
pub mod candy_cane;
pub mod candy_off;
pub mod cannabis;
pub mod cannabis_off;
pub mod captions;
pub mod captions_off;
pub mod car;
pub mod car_front;
pub mod car_taxi_front;
pub mod caravan;
pub mod card_sim;
pub mod carrot;
pub mod case_lower;
pub mod case_sensitive;
pub mod case_upper;
pub mod cassette_tape;
pub mod cast;
pub mod castle;
pub mod cat;
pub mod cctv;
pub mod cctv_off;
pub mod chart_area;
pub mod chart_bar;
pub mod chart_bar_big;
pub mod chart_bar_decreasing;
pub mod chart_bar_increasing;
pub mod chart_bar_stacked;
pub mod chart_candlestick;
pub mod chart_column;
pub mod chart_column_big;
pub mod chart_column_decreasing;
pub mod chart_column_increasing;
pub mod chart_column_stacked;
pub mod chart_gantt;
pub mod chart_line;
pub mod chart_network;
pub mod chart_no_axes_column;
pub mod chart_no_axes_column_decreasing;
pub mod chart_no_axes_column_increasing;
pub mod chart_no_axes_combined;
pub mod chart_no_axes_gantt;
pub mod chart_pie;
pub mod chart_scatter;
pub mod chart_spline;
pub mod check;
pub mod check_check;
pub mod check_line;
pub mod chef_hat;
pub mod cherry;
pub mod chess_bishop;
pub mod chess_king;
pub mod chess_knight;
pub mod chess_pawn;
pub mod chess_queen;
pub mod chess_rook;
pub mod chevron_down;
pub mod chevron_first;
pub mod chevron_last;
pub mod chevron_left;
pub mod chevron_right;
pub mod chevron_up;
pub mod chevrons_down;
pub mod chevrons_down_up;
pub mod chevrons_left;
pub mod chevrons_left_right;
pub mod chevrons_left_right_ellipsis;
pub mod chevrons_right;
pub mod chevrons_right_left;
pub mod chevrons_up;
pub mod chevrons_up_down;
pub mod church;
pub mod cigarette;
pub mod cigarette_off;
pub mod circle;
pub mod circle_alert;
pub mod circle_arrow_down;
pub mod circle_arrow_left;
pub mod circle_arrow_out_down_left;
pub mod circle_arrow_out_down_right;
pub mod circle_arrow_out_up_left;
pub mod circle_arrow_out_up_right;
pub mod circle_arrow_right;
pub mod circle_arrow_up;
pub mod circle_check;
pub mod circle_check_big;
pub mod circle_chevron_down;
pub mod circle_chevron_left;
pub mod circle_chevron_right;
pub mod circle_chevron_up;
pub mod circle_dashed;
pub mod circle_divide;
pub mod circle_dollar_sign;
pub mod circle_dot;
pub mod circle_dot_dashed;
pub mod circle_ellipsis;
pub mod circle_equal;
pub mod circle_fading_arrow_up;
pub mod circle_fading_plus;
pub mod circle_gauge;
pub mod circle_minus;
pub mod circle_off;
pub mod circle_parking;
pub mod circle_parking_off;
pub mod circle_pause;
pub mod circle_percent;
pub mod circle_pile;
pub mod circle_play;
pub mod circle_plus;
pub mod circle_pound_sterling;
pub mod circle_power;
pub mod circle_question_mark;
pub mod circle_slash;
pub mod circle_slash_2;
pub mod circle_small;
pub mod circle_star;
pub mod circle_stop;
pub mod circle_user;
pub mod circle_user_round;
pub mod circle_x;
pub mod circuit_board;
pub mod citrus;
pub mod clapperboard;
pub mod clipboard;
pub mod clipboard_check;
pub mod clipboard_clock;
pub mod clipboard_copy;
pub mod clipboard_list;
pub mod clipboard_minus;
pub mod clipboard_paste;
pub mod clipboard_pen;
pub mod clipboard_pen_line;
pub mod clipboard_plus;
pub mod clipboard_type;
pub mod clipboard_x;
pub mod clock;
pub mod clock_1;
pub mod clock_10;
pub mod clock_11;
pub mod clock_12;
pub mod clock_2;
pub mod clock_3;
pub mod clock_4;
pub mod clock_5;
pub mod clock_6;
pub mod clock_7;
pub mod clock_8;
pub mod clock_9;
pub mod clock_alert;
pub mod clock_arrow_down;
pub mod clock_arrow_up;
pub mod clock_check;
pub mod clock_fading;
pub mod clock_plus;
pub mod closed_caption;
pub mod cloud;
pub mod cloud_alert;
pub mod cloud_backup;
pub mod cloud_check;
pub mod cloud_cog;
pub mod cloud_download;
pub mod cloud_drizzle;
pub mod cloud_fog;
pub mod cloud_hail;
pub mod cloud_lightning;
pub mod cloud_moon;
pub mod cloud_moon_rain;
pub mod cloud_off;
pub mod cloud_rain;
pub mod cloud_rain_wind;
pub mod cloud_snow;
pub mod cloud_sun;
pub mod cloud_sun_rain;
pub mod cloud_sync;
pub mod cloud_upload;
pub mod cloudy;
pub mod clover;
pub mod club;
pub mod code;
pub mod code_xml;
pub mod coffee;
pub mod cog;
pub mod coins;
pub mod columns_2;
pub mod columns_3;
pub mod columns_3_cog;
pub mod columns_4;
pub mod combine;
pub mod command;
pub mod compass;
pub mod component;
pub mod computer;
pub mod concierge_bell;
pub mod cone;
pub mod construction;
pub mod contact;
pub mod contact_round;
pub mod container;
pub mod contrast;
pub mod cookie;
pub mod cooking_pot;
pub mod copy;
pub mod copy_check;
pub mod copy_minus;
pub mod copy_plus;
pub mod copy_slash;
pub mod copy_x;
pub mod copyleft;
pub mod copyright;
pub mod corner_down_left;
pub mod corner_down_right;
pub mod corner_left_down;
pub mod corner_left_up;
pub mod corner_right_down;
pub mod corner_right_up;
pub mod corner_up_left;
pub mod corner_up_right;
pub mod cpu;
pub mod creative_commons;
pub mod credit_card;
pub mod croissant;
pub mod crop;
pub mod cross;
pub mod crosshair;
pub mod crown;
pub mod cuboid;
pub mod cup_soda;
pub mod currency;
pub mod cylinder;
pub mod dam;
pub mod database;
pub mod database_backup;
pub mod database_search;
pub mod database_zap;
pub mod decimals_arrow_left;
pub mod decimals_arrow_right;
pub mod delete;
pub mod dessert;
pub mod diameter;
pub mod diamond;
pub mod diamond_minus;
pub mod diamond_percent;
pub mod diamond_plus;
pub mod dice_1;
pub mod dice_2;
pub mod dice_3;
pub mod dice_4;
pub mod dice_5;
pub mod dice_6;
pub mod dices;
pub mod diff;
pub mod disc;
pub mod disc_2;
pub mod disc_3;
pub mod disc_album;
pub mod divide;
pub mod dna;
pub mod dna_off;
pub mod dock;
pub mod dog;
pub mod dollar_sign;
pub mod donut;
pub mod door_closed;
pub mod door_closed_locked;
pub mod door_open;
pub mod dot;
pub mod download;
pub mod drafting_compass;
pub mod drama;
pub mod drill;
pub mod drone;
pub mod droplet;
pub mod droplet_off;
pub mod droplets;
pub mod drum;
pub mod drumstick;
pub mod dumbbell;
pub mod ear;
pub mod ear_off;
pub mod earth;
pub mod earth_lock;
pub mod eclipse;
pub mod egg;
pub mod egg_fried;
pub mod egg_off;
pub mod ellipse;
pub mod ellipsis;
pub mod ellipsis_vertical;
pub mod equal;
pub mod equal_approximately;
pub mod equal_not;
pub mod eraser;
pub mod ethernet_port;
pub mod euro;
pub mod ev_charger;
pub mod expand;
pub mod external_link;
pub mod eye;
pub mod eye_closed;
pub mod eye_off;
pub mod factory;
pub mod fan;
pub mod fast_forward;
pub mod feather;
pub mod fence;
pub mod ferris_wheel;
pub mod file;
pub mod file_archive;
pub mod file_axis_3d;
pub mod file_badge;
pub mod file_box;
pub mod file_braces;
pub mod file_braces_corner;
pub mod file_chart_column;
pub mod file_chart_column_increasing;
pub mod file_chart_line;
pub mod file_chart_pie;
pub mod file_check;
pub mod file_check_corner;
pub mod file_clock;
pub mod file_code;
pub mod file_code_corner;
pub mod file_cog;
pub mod file_diff;
pub mod file_digit;
pub mod file_down;
pub mod file_exclamation_point;
pub mod file_headphone;
pub mod file_heart;
pub mod file_image;
pub mod file_input;
pub mod file_key;
pub mod file_lock;
pub mod file_minus;
pub mod file_minus_corner;
pub mod file_music;
pub mod file_output;
pub mod file_pen;
pub mod file_pen_line;
pub mod file_play;
pub mod file_plus;
pub mod file_plus_corner;
pub mod file_question_mark;
pub mod file_scan;
pub mod file_search;
pub mod file_search_corner;
pub mod file_signal;
pub mod file_sliders;
pub mod file_spreadsheet;
pub mod file_stack;
pub mod file_symlink;
pub mod file_terminal;
pub mod file_text;
pub mod file_type;
pub mod file_type_corner;
pub mod file_up;
pub mod file_user;
pub mod file_video_camera;
pub mod file_volume;
pub mod file_x;
pub mod file_x_corner;
pub mod files;
pub mod film;
pub mod fingerprint_pattern;
pub mod fire_extinguisher;
pub mod fish;
pub mod fish_off;
pub mod fish_symbol;
pub mod fishing_hook;
pub mod fishing_rod;
pub mod flag;
pub mod flag_off;
pub mod flag_triangle_left;
pub mod flag_triangle_right;
pub mod flame;
pub mod flame_kindling;
pub mod flashlight;
pub mod flashlight_off;
pub mod flask_conical;
pub mod flask_conical_off;
pub mod flask_round;
pub mod flip_horizontal_2;
pub mod flip_vertical_2;
pub mod flower;
pub mod flower_2;
pub mod focus;
pub mod fold_horizontal;
pub mod fold_vertical;
pub mod folder;
pub mod folder_archive;
pub mod folder_bookmark;
pub mod folder_check;
pub mod folder_clock;
pub mod folder_closed;
pub mod folder_code;
pub mod folder_cog;
pub mod folder_dot;
pub mod folder_down;
pub mod folder_git;
pub mod folder_git_2;
pub mod folder_heart;
pub mod folder_input;
pub mod folder_kanban;
pub mod folder_key;
pub mod folder_lock;
pub mod folder_minus;
pub mod folder_open;
pub mod folder_open_dot;
pub mod folder_output;
pub mod folder_pen;
pub mod folder_plus;
pub mod folder_root;
pub mod folder_search;
pub mod folder_search_2;
pub mod folder_symlink;
pub mod folder_sync;
pub mod folder_tree;
pub mod folder_up;
pub mod folder_x;
pub mod folders;
pub mod footprints;
pub mod forklift;
pub mod form;
pub mod forward;
pub mod frame;
pub mod frown;
pub mod fuel;
pub mod fullscreen;
pub mod funnel;
pub mod funnel_plus;
pub mod funnel_x;
pub mod gallery_horizontal;
pub mod gallery_horizontal_end;
pub mod gallery_thumbnails;
pub mod gallery_vertical;
pub mod gallery_vertical_end;
pub mod gamepad;
pub mod gamepad_2;
pub mod gamepad_directional;
pub mod gauge;
pub mod gavel;
pub mod gem;
pub mod georgian_lari;
pub mod ghost;
pub mod gift;
pub mod git_branch;
pub mod git_branch_minus;
pub mod git_branch_plus;
pub mod git_commit_horizontal;
pub mod git_commit_vertical;
pub mod git_compare;
pub mod git_compare_arrows;
pub mod git_fork;
pub mod git_graph;
pub mod git_merge;
pub mod git_merge_conflict;
pub mod git_pull_request;
pub mod git_pull_request_arrow;
pub mod git_pull_request_closed;
pub mod git_pull_request_create;
pub mod git_pull_request_create_arrow;
pub mod git_pull_request_draft;
pub mod glass_water;
pub mod glasses;
pub mod globe;
pub mod globe_lock;
pub mod globe_off;
pub mod globe_x;
pub mod goal;
pub mod gpu;
pub mod graduation_cap;
pub mod grape;
pub mod grid_2x2;
pub mod grid_2x2_check;
pub mod grid_2x2_plus;
pub mod grid_2x2_x;
pub mod grid_3x2;
pub mod grid_3x3;
pub mod grip;
pub mod grip_horizontal;
pub mod grip_vertical;
pub mod group;
pub mod guitar;
pub mod ham;
pub mod hamburger;
pub mod hammer;
pub mod hand;
pub mod hand_coins;
pub mod hand_fist;
pub mod hand_grab;
pub mod hand_heart;
pub mod hand_helping;
pub mod hand_metal;
pub mod hand_platter;
pub mod handbag;
pub mod handshake;
pub mod hard_drive;
pub mod hard_drive_download;
pub mod hard_drive_upload;
pub mod hard_hat;
pub mod hash;
pub mod hat_glasses;
pub mod haze;
pub mod hd;
pub mod hdmi_port;
pub mod heading;
pub mod heading_1;
pub mod heading_2;
pub mod heading_3;
pub mod heading_4;
pub mod heading_5;
pub mod heading_6;
pub mod headphone_off;
pub mod headphones;
pub mod headset;
pub mod heart;
pub mod heart_crack;
pub mod heart_handshake;
pub mod heart_minus;
pub mod heart_off;
pub mod heart_plus;
pub mod heart_pulse;
pub mod heart_x;
pub mod heater;
pub mod helicopter;
pub mod hexagon;
pub mod highlighter;
pub mod history;
pub mod hop;
pub mod hop_off;
pub mod hospital;
pub mod hotel;
pub mod hourglass;
pub mod house;
pub mod house_heart;
pub mod house_plug;
pub mod house_plus;
pub mod house_wifi;
pub mod ice_cream_bowl;
pub mod ice_cream_cone;
pub mod id_card;
pub mod id_card_lanyard;
pub mod image;
pub mod image_down;
pub mod image_minus;
pub mod image_off;
pub mod image_play;
pub mod image_plus;
pub mod image_up;
pub mod image_upscale;
pub mod images;
pub mod import;
pub mod inbox;
pub mod indian_rupee;
pub mod infinity;
pub mod info;
pub mod inspection_panel;
pub mod italic;
pub mod iteration_ccw;
pub mod iteration_cw;
pub mod japanese_yen;
pub mod joystick;
pub mod kanban;
pub mod kayak;
pub mod key;
pub mod key_round;
pub mod key_square;
pub mod keyboard;
pub mod keyboard_music;
pub mod keyboard_off;
pub mod lamp;
pub mod lamp_ceiling;
pub mod lamp_desk;
pub mod lamp_floor;
pub mod lamp_wall_down;
pub mod lamp_wall_up;
pub mod land_plot;
pub mod landmark;
pub mod languages;
pub mod laptop;
pub mod laptop_minimal;
pub mod laptop_minimal_check;
pub mod lasso;
pub mod lasso_select;
pub mod laugh;
pub mod layers;
pub mod layers_2;
pub mod layers_minus;
pub mod layers_plus;
pub mod layout_dashboard;
pub mod layout_grid;
pub mod layout_list;
pub mod layout_panel_left;
pub mod layout_panel_top;
pub mod layout_template;
pub mod leaf;
pub mod leafy_green;
pub mod lectern;
pub mod lens_concave;
pub mod lens_convex;
pub mod library;
pub mod library_big;
pub mod life_buoy;
pub mod ligature;
pub mod lightbulb;
pub mod lightbulb_off;
pub mod line_dot_right_horizontal;
pub mod line_squiggle;
pub mod line_style;
pub mod link;
pub mod link_2;
pub mod link_2_off;
pub mod list;
pub mod list_check;
pub mod list_checks;
pub mod list_chevrons_down_up;
pub mod list_chevrons_up_down;
pub mod list_collapse;
pub mod list_end;
pub mod list_filter;
pub mod list_filter_plus;
pub mod list_indent_decrease;
pub mod list_indent_increase;
pub mod list_minus;
pub mod list_music;
pub mod list_ordered;
pub mod list_plus;
pub mod list_restart;
pub mod list_start;
pub mod list_todo;
pub mod list_tree;
pub mod list_video;
pub mod list_x;
pub mod loader;
pub mod loader_circle;
pub mod loader_pinwheel;
pub mod locate;
pub mod locate_fixed;
pub mod locate_off;
pub mod lock;
pub mod lock_keyhole;
pub mod lock_keyhole_open;
pub mod lock_open;
pub mod log_in;
pub mod log_out;
pub mod logs;
pub mod lollipop;
pub mod luggage;
pub mod magnet;
pub mod mail;
pub mod mail_check;
pub mod mail_minus;
pub mod mail_open;
pub mod mail_plus;
pub mod mail_question_mark;
pub mod mail_search;
pub mod mail_warning;
pub mod mail_x;
pub mod mailbox;
pub mod mails;
pub mod map;
pub mod map_minus;
pub mod map_pin;
pub mod map_pin_check;
pub mod map_pin_check_inside;
pub mod map_pin_house;
pub mod map_pin_minus;
pub mod map_pin_minus_inside;
pub mod map_pin_off;
pub mod map_pin_pen;
pub mod map_pin_plus;
pub mod map_pin_plus_inside;
pub mod map_pin_search;
pub mod map_pin_x;
pub mod map_pin_x_inside;
pub mod map_pinned;
pub mod map_plus;
pub mod mars;
pub mod mars_stroke;
pub mod martini;
pub mod maximize;
pub mod maximize_2;
pub mod medal;
pub mod megaphone;
pub mod megaphone_off;
pub mod meh;
pub mod memory_stick;
pub mod menu;
pub mod merge;
pub mod message_circle;
pub mod message_circle_check;
pub mod message_circle_code;
pub mod message_circle_dashed;
pub mod message_circle_heart;
pub mod message_circle_more;
pub mod message_circle_off;
pub mod message_circle_plus;
pub mod message_circle_question_mark;
pub mod message_circle_reply;
pub mod message_circle_warning;
pub mod message_circle_x;
pub mod message_square;
pub mod message_square_check;
pub mod message_square_code;
pub mod message_square_dashed;
pub mod message_square_diff;
pub mod message_square_dot;
pub mod message_square_heart;
pub mod message_square_lock;
pub mod message_square_more;
pub mod message_square_off;
pub mod message_square_plus;
pub mod message_square_quote;
pub mod message_square_reply;
pub mod message_square_share;
pub mod message_square_text;
pub mod message_square_warning;
pub mod message_square_x;
pub mod messages_square;
pub mod metronome;
pub mod mic;
pub mod mic_off;
pub mod mic_vocal;
pub mod microchip;
pub mod microscope;
pub mod microwave;
pub mod milestone;
pub mod milk;
pub mod milk_off;
pub mod minimize;
pub mod minimize_2;
pub mod minus;
pub mod mirror_rectangular;
pub mod mirror_round;
pub mod monitor;
pub mod monitor_check;
pub mod monitor_cloud;
pub mod monitor_cog;
pub mod monitor_dot;
pub mod monitor_down;
pub mod monitor_off;
pub mod monitor_pause;
pub mod monitor_play;
pub mod monitor_smartphone;
pub mod monitor_speaker;
pub mod monitor_stop;
pub mod monitor_up;
pub mod monitor_x;
pub mod moon;
pub mod moon_star;
pub mod motorbike;
pub mod mountain;
pub mod mountain_snow;
pub mod mouse;
pub mod mouse_left;
pub mod mouse_off;
pub mod mouse_pointer;
pub mod mouse_pointer_2;
pub mod mouse_pointer_2_off;
pub mod mouse_pointer_ban;
pub mod mouse_pointer_click;
pub mod mouse_right;
pub mod r#move;
pub mod move_3d;
pub mod move_diagonal;
pub mod move_diagonal_2;
pub mod move_down;
pub mod move_down_left;
pub mod move_down_right;
pub mod move_horizontal;
pub mod move_left;
pub mod move_right;
pub mod move_up;
pub mod move_up_left;
pub mod move_up_right;
pub mod move_vertical;
pub mod music;
pub mod music_2;
pub mod music_3;
pub mod music_4;
pub mod navigation;
pub mod navigation_2;
pub mod navigation_2_off;
pub mod navigation_off;
pub mod network;
pub mod newspaper;
pub mod nfc;
pub mod non_binary;
pub mod notebook;
pub mod notebook_pen;
pub mod notebook_tabs;
pub mod notebook_text;
pub mod notepad_text;
pub mod notepad_text_dashed;
pub mod nut;
pub mod nut_off;
pub mod octagon;
pub mod octagon_alert;
pub mod octagon_minus;
pub mod octagon_pause;
pub mod octagon_x;
pub mod omega;
pub mod option;
pub mod orbit;
pub mod origami;
pub mod package;
pub mod package_2;
pub mod package_check;
pub mod package_minus;
pub mod package_open;
pub mod package_plus;
pub mod package_search;
pub mod package_x;
pub mod paint_bucket;
pub mod paint_roller;
pub mod paintbrush;
pub mod paintbrush_vertical;
pub mod palette;
pub mod panda;
pub mod panel_bottom;
pub mod panel_bottom_close;
pub mod panel_bottom_dashed;
pub mod panel_bottom_open;
pub mod panel_left;
pub mod panel_left_close;
pub mod panel_left_dashed;
pub mod panel_left_open;
pub mod panel_left_right_dashed;
pub mod panel_right;
pub mod panel_right_close;
pub mod panel_right_dashed;
pub mod panel_right_open;
pub mod panel_top;
pub mod panel_top_bottom_dashed;
pub mod panel_top_close;
pub mod panel_top_dashed;
pub mod panel_top_open;
pub mod panels_left_bottom;
pub mod panels_right_bottom;
pub mod panels_top_left;
pub mod paperclip;
pub mod parentheses;
pub mod parking_meter;
pub mod party_popper;
pub mod pause;
pub mod paw_print;
pub mod pc_case;
pub mod pen;
pub mod pen_line;
pub mod pen_off;
pub mod pen_tool;
pub mod pencil;
pub mod pencil_line;
pub mod pencil_off;
pub mod pencil_ruler;
pub mod pentagon;
pub mod percent;
pub mod person_standing;
pub mod philippine_peso;
pub mod phone;
pub mod phone_call;
pub mod phone_forwarded;
pub mod phone_incoming;
pub mod phone_missed;
pub mod phone_off;
pub mod phone_outgoing;
pub mod pi;
pub mod piano;
pub mod pickaxe;
pub mod picture_in_picture;
pub mod picture_in_picture_2;
pub mod piggy_bank;
pub mod pilcrow;
pub mod pilcrow_left;
pub mod pilcrow_right;
pub mod pill;
pub mod pill_bottle;
pub mod pin;
pub mod pin_off;
pub mod pipette;
pub mod pizza;
pub mod plane;
pub mod plane_landing;
pub mod plane_takeoff;
pub mod play;
pub mod plug;
pub mod plug_2;
pub mod plug_zap;
pub mod plus;
pub mod pocket_knife;
pub mod podcast;
pub mod pointer;
pub mod pointer_off;
pub mod popcorn;
pub mod popsicle;
pub mod pound_sterling;
pub mod power;
pub mod power_off;
pub mod presentation;
pub mod printer;
pub mod printer_check;
pub mod printer_x;
pub mod projector;
pub mod proportions;
pub mod puzzle;
pub mod pyramid;
pub mod qr_code;
pub mod quote;
pub mod rabbit;
pub mod radar;
pub mod radiation;
pub mod radical;
pub mod radio;
pub mod radio_off;
pub mod radio_receiver;
pub mod radio_tower;
pub mod radius;
pub mod rainbow;
pub mod rat;
pub mod ratio;
pub mod receipt;
pub mod receipt_cent;
pub mod receipt_euro;
pub mod receipt_indian_rupee;
pub mod receipt_japanese_yen;
pub mod receipt_pound_sterling;
pub mod receipt_russian_ruble;
pub mod receipt_swiss_franc;
pub mod receipt_text;
pub mod receipt_turkish_lira;
pub mod rectangle_circle;
pub mod rectangle_ellipsis;
pub mod rectangle_goggles;
pub mod rectangle_horizontal;
pub mod rectangle_vertical;
pub mod recycle;
pub mod redo;
pub mod redo_2;
pub mod redo_dot;
pub mod refresh_ccw;
pub mod refresh_ccw_dot;
pub mod refresh_cw;
pub mod refresh_cw_off;
pub mod refrigerator;
pub mod regex;
pub mod remove_formatting;
pub mod repeat;
pub mod repeat_1;
pub mod repeat_2;
pub mod repeat_off;
pub mod replace;
pub mod replace_all;
pub mod reply;
pub mod reply_all;
pub mod rewind;
pub mod ribbon;
pub mod road;
pub mod rocket;
pub mod rocking_chair;
pub mod roller_coaster;
pub mod rose;
pub mod rotate_3d;
pub mod rotate_ccw;
pub mod rotate_ccw_key;
pub mod rotate_ccw_square;
pub mod rotate_cw;
pub mod rotate_cw_square;
pub mod route;
pub mod route_off;
pub mod router;
pub mod rows_2;
pub mod rows_3;
pub mod rows_4;
pub mod rss;
pub mod ruler;
pub mod ruler_dimension_line;
pub mod russian_ruble;
pub mod sailboat;
pub mod salad;
pub mod sandwich;
pub mod satellite;
pub mod satellite_dish;
pub mod saudi_riyal;
pub mod save;
pub mod save_all;
pub mod save_off;
pub mod scale;
pub mod scale_3d;
pub mod scaling;
pub mod scan;
pub mod scan_barcode;
pub mod scan_eye;
pub mod scan_face;
pub mod scan_heart;
pub mod scan_line;
pub mod scan_qr_code;
pub mod scan_search;
pub mod scan_text;
pub mod school;
pub mod scissors;
pub mod scissors_line_dashed;
pub mod scooter;
pub mod screen_share;
pub mod screen_share_off;
pub mod scroll;
pub mod scroll_text;
pub mod search;
pub mod search_alert;
pub mod search_check;
pub mod search_code;
pub mod search_slash;
pub mod search_x;
pub mod section;
pub mod send;
pub mod send_horizontal;
pub mod send_to_back;
pub mod separator_horizontal;
pub mod separator_vertical;
pub mod server;
pub mod server_cog;
pub mod server_crash;
pub mod server_off;
pub mod settings;
pub mod settings_2;
pub mod shapes;
pub mod share;
pub mod share_2;
pub mod sheet;
pub mod shell;
pub mod shelving_unit;
pub mod shield;
pub mod shield_alert;
pub mod shield_ban;
pub mod shield_check;
pub mod shield_cog;
pub mod shield_cog_corner;
pub mod shield_ellipsis;
pub mod shield_half;
pub mod shield_minus;
pub mod shield_off;
pub mod shield_plus;
pub mod shield_question_mark;
pub mod shield_user;
pub mod shield_x;
pub mod ship;
pub mod ship_wheel;
pub mod shirt;
pub mod shopping_bag;
pub mod shopping_basket;
pub mod shopping_cart;
pub mod shovel;
pub mod shower_head;
pub mod shredder;
pub mod shrimp;
pub mod shrink;
pub mod shrub;
pub mod shuffle;
pub mod sigma;
pub mod signal;
pub mod signal_high;
pub mod signal_low;
pub mod signal_medium;
pub mod signal_zero;
pub mod signature;
pub mod signpost;
pub mod signpost_big;
pub mod siren;
pub mod skip_back;
pub mod skip_forward;
pub mod skull;
pub mod slash;
pub mod slice;
pub mod sliders_horizontal;
pub mod sliders_vertical;
pub mod smartphone;
pub mod smartphone_charging;
pub mod smartphone_nfc;
pub mod smile;
pub mod smile_plus;
pub mod snail;
pub mod snowflake;
pub mod soap_dispenser_droplet;
pub mod sofa;
pub mod solar_panel;
pub mod soup;
pub mod space;
pub mod spade;
pub mod sparkle;
pub mod sparkles;
pub mod speaker;
pub mod speech;
pub mod spell_check;
pub mod spell_check_2;
pub mod spline;
pub mod spline_pointer;
pub mod split;
pub mod spool;
pub mod sport_shoe;
pub mod spotlight;
pub mod spray_can;
pub mod sprout;
pub mod square;
pub mod square_activity;
pub mod square_arrow_down;
pub mod square_arrow_down_left;
pub mod square_arrow_down_right;
pub mod square_arrow_left;
pub mod square_arrow_out_down_left;
pub mod square_arrow_out_down_right;
pub mod square_arrow_out_up_left;
pub mod square_arrow_out_up_right;
pub mod square_arrow_right;
pub mod square_arrow_right_enter;
pub mod square_arrow_right_exit;
pub mod square_arrow_up;
pub mod square_arrow_up_left;
pub mod square_arrow_up_right;
pub mod square_asterisk;
pub mod square_bottom_dashed_scissors;
pub mod square_centerline_dashed_horizontal;
pub mod square_centerline_dashed_vertical;
pub mod square_chart_gantt;
pub mod square_check;
pub mod square_check_big;
pub mod square_chevron_down;
pub mod square_chevron_left;
pub mod square_chevron_right;
pub mod square_chevron_up;
pub mod square_code;
pub mod square_dashed;
pub mod square_dashed_bottom;
pub mod square_dashed_bottom_code;
pub mod square_dashed_kanban;
pub mod square_dashed_mouse_pointer;
pub mod square_dashed_text;
pub mod square_dashed_top_solid;
pub mod square_divide;
pub mod square_dot;
pub mod square_equal;
pub mod square_function;
pub mod square_kanban;
pub mod square_library;
pub mod square_m;
pub mod square_menu;
pub mod square_minus;
pub mod square_mouse_pointer;
pub mod square_parking;
pub mod square_parking_off;
pub mod square_pause;
pub mod square_pen;
pub mod square_percent;
pub mod square_pi;
pub mod square_pilcrow;
pub mod square_play;
pub mod square_plus;
pub mod square_power;
pub mod square_radical;
pub mod square_round_corner;
pub mod square_scissors;
pub mod square_sigma;
pub mod square_slash;
pub mod square_split_horizontal;
pub mod square_split_vertical;
pub mod square_square;
pub mod square_stack;
pub mod square_star;
pub mod square_stop;
pub mod square_terminal;
pub mod square_user;
pub mod square_user_round;
pub mod square_x;
pub mod squares_exclude;
pub mod squares_intersect;
pub mod squares_subtract;
pub mod squares_unite;
pub mod squircle;
pub mod squircle_dashed;
pub mod squirrel;
pub mod stamp;
pub mod star;
pub mod star_half;
pub mod star_off;
pub mod step_back;
pub mod step_forward;
pub mod stethoscope;
pub mod sticker;
pub mod sticky_note;
pub mod stone;
pub mod store;
pub mod stretch_horizontal;
pub mod stretch_vertical;
pub mod strikethrough;
pub mod subscript;
pub mod sun;
pub mod sun_dim;
pub mod sun_medium;
pub mod sun_moon;
pub mod sun_snow;
pub mod sunrise;
pub mod sunset;
pub mod superscript;
pub mod swatch_book;
pub mod swiss_franc;
pub mod switch_camera;
pub mod sword;
pub mod swords;
pub mod syringe;
pub mod table;
pub mod table_2;
pub mod table_cells_merge;
pub mod table_cells_split;
pub mod table_columns_split;
pub mod table_of_contents;
pub mod table_properties;
pub mod table_rows_split;
pub mod tablet;
pub mod tablet_smartphone;
pub mod tablets;
pub mod tag;
pub mod tags;
pub mod tally_1;
pub mod tally_2;
pub mod tally_3;
pub mod tally_4;
pub mod tally_5;
pub mod tangent;
pub mod target;
pub mod telescope;
pub mod tent;
pub mod tent_tree;
pub mod terminal;
pub mod test_tube;
pub mod test_tube_diagonal;
pub mod test_tubes;
pub mod text_align_center;
pub mod text_align_end;
pub mod text_align_justify;
pub mod text_align_start;
pub mod text_cursor;
pub mod text_cursor_input;
pub mod text_initial;
pub mod text_quote;
pub mod text_search;
pub mod text_wrap;
pub mod theater;
pub mod thermometer;
pub mod thermometer_snowflake;
pub mod thermometer_sun;
pub mod thumbs_down;
pub mod thumbs_up;
pub mod ticket;
pub mod ticket_check;
pub mod ticket_minus;
pub mod ticket_percent;
pub mod ticket_plus;
pub mod ticket_slash;
pub mod ticket_x;
pub mod tickets;
pub mod tickets_plane;
pub mod timeline;
pub mod timer;
pub mod timer_off;
pub mod timer_reset;
pub mod toggle_left;
pub mod toggle_right;
pub mod toilet;
pub mod tool_case;
pub mod toolbox;
pub mod tornado;
pub mod torus;
pub mod touchpad;
pub mod touchpad_off;
pub mod towel_rack;
pub mod tower_control;
pub mod toy_brick;
pub mod tractor;
pub mod traffic_cone;
pub mod train_front;
pub mod train_front_tunnel;
pub mod train_track;
pub mod tram_front;
pub mod transgender;
pub mod trash;
pub mod trash_2;
pub mod tree_deciduous;
pub mod tree_palm;
pub mod tree_pine;
pub mod trees;
pub mod trending_down;
pub mod trending_up;
pub mod trending_up_down;
pub mod triangle;
pub mod triangle_alert;
pub mod triangle_dashed;
pub mod triangle_right;
pub mod trophy;
pub mod truck;
pub mod truck_electric;
pub mod turkish_lira;
pub mod turntable;
pub mod turtle;
pub mod tv;
pub mod tv_minimal;
pub mod tv_minimal_play;
pub mod r#type;
pub mod type_outline;
pub mod umbrella;
pub mod umbrella_off;
pub mod underline;
pub mod undo;
pub mod undo_2;
pub mod undo_dot;
pub mod unfold_horizontal;
pub mod unfold_vertical;
pub mod ungroup;
pub mod university;
pub mod unlink;
pub mod unlink_2;
pub mod unplug;
pub mod upload;
pub mod usb;
pub mod user;
pub mod user_check;
pub mod user_cog;
pub mod user_key;
pub mod user_lock;
pub mod user_minus;
pub mod user_pen;
pub mod user_plus;
pub mod user_round;
pub mod user_round_check;
pub mod user_round_cog;
pub mod user_round_key;
pub mod user_round_minus;
pub mod user_round_pen;
pub mod user_round_plus;
pub mod user_round_search;
pub mod user_round_x;
pub mod user_search;
pub mod user_star;
pub mod user_x;
pub mod users;
pub mod users_round;
pub mod utensils;
pub mod utensils_crossed;
pub mod utility_pole;
pub mod van;
pub mod variable;
pub mod vault;
pub mod vector_square;
pub mod vegan;
pub mod venetian_mask;
pub mod venus;
pub mod venus_and_mars;
pub mod vibrate;
pub mod vibrate_off;
pub mod video;
pub mod video_off;
pub mod videotape;
pub mod view;
pub mod voicemail;
pub mod volleyball;
pub mod volume;
pub mod volume_1;
pub mod volume_2;
pub mod volume_off;
pub mod volume_x;
pub mod vote;
pub mod wallet;
pub mod wallet_cards;
pub mod wallet_minimal;
pub mod wallpaper;
pub mod wand;
pub mod wand_sparkles;
pub mod warehouse;
pub mod washing_machine;
pub mod watch;
pub mod waves_arrow_down;
pub mod waves_arrow_up;
pub mod waves_horizontal;
pub mod waves_ladder;
pub mod waves_vertical;
pub mod waypoints;
pub mod webcam;
pub mod webhook;
pub mod webhook_off;
pub mod weight;
pub mod weight_tilde;
pub mod wheat;
pub mod wheat_off;
pub mod whole_word;
pub mod wifi;
pub mod wifi_cog;
pub mod wifi_high;
pub mod wifi_low;
pub mod wifi_off;
pub mod wifi_pen;
pub mod wifi_sync;
pub mod wifi_zero;
pub mod wind;
pub mod wind_arrow_down;
pub mod wine;
pub mod wine_off;
pub mod workflow;
pub mod worm;
pub mod wrench;
pub mod x;
pub mod x_line_top;
pub mod zap;
pub mod zap_off;
pub mod zodiac_aquarius;
pub mod zodiac_aries;
pub mod zodiac_cancer;
pub mod zodiac_capricorn;
pub mod zodiac_gemini;
pub mod zodiac_leo;
pub mod zodiac_libra;
pub mod zodiac_ophiuchus;
pub mod zodiac_pisces;
pub mod zodiac_sagittarius;
pub mod zodiac_scorpio;
pub mod zodiac_taurus;
pub mod zodiac_virgo;
pub mod zoom_in;
pub mod zoom_out;

pub use a_arrow_down::AArrowDown;
pub use a_arrow_up::AArrowUp;
pub use a_large_small::ALargeSmall;
pub use accessibility::Accessibility;
pub use activity::Activity;
pub use air_vent::AirVent;
pub use airplay::Airplay;
pub use alarm_clock::AlarmClock;
pub use alarm_clock_check::AlarmClockCheck;
pub use alarm_clock_minus::AlarmClockMinus;
pub use alarm_clock_off::AlarmClockOff;
pub use alarm_clock_plus::AlarmClockPlus;
pub use alarm_smoke::AlarmSmoke;
pub use album::Album;
pub use align_center_horizontal::AlignCenterHorizontal;
pub use align_center_vertical::AlignCenterVertical;
pub use align_end_horizontal::AlignEndHorizontal;
pub use align_end_vertical::AlignEndVertical;
pub use align_horizontal_distribute_center::AlignHorizontalDistributeCenter;
pub use align_horizontal_distribute_end::AlignHorizontalDistributeEnd;
pub use align_horizontal_distribute_start::AlignHorizontalDistributeStart;
pub use align_horizontal_justify_center::AlignHorizontalJustifyCenter;
pub use align_horizontal_justify_end::AlignHorizontalJustifyEnd;
pub use align_horizontal_justify_start::AlignHorizontalJustifyStart;
pub use align_horizontal_space_around::AlignHorizontalSpaceAround;
pub use align_horizontal_space_between::AlignHorizontalSpaceBetween;
pub use align_start_horizontal::AlignStartHorizontal;
pub use align_start_vertical::AlignStartVertical;
pub use align_vertical_distribute_center::AlignVerticalDistributeCenter;
pub use align_vertical_distribute_end::AlignVerticalDistributeEnd;
pub use align_vertical_distribute_start::AlignVerticalDistributeStart;
pub use align_vertical_justify_center::AlignVerticalJustifyCenter;
pub use align_vertical_justify_end::AlignVerticalJustifyEnd;
pub use align_vertical_justify_start::AlignVerticalJustifyStart;
pub use align_vertical_space_around::AlignVerticalSpaceAround;
pub use align_vertical_space_between::AlignVerticalSpaceBetween;
pub use ambulance::Ambulance;
pub use ampersand::Ampersand;
pub use ampersands::Ampersands;
pub use amphora::Amphora;
pub use anchor::Anchor;
pub use angry::Angry;
pub use annoyed::Annoyed;
pub use antenna::Antenna;
pub use anvil::Anvil;
pub use aperture::Aperture;
pub use app_window::AppWindow;
pub use app_window_mac::AppWindowMac;
pub use apple::Apple;
pub use archive::Archive;
pub use archive_restore::ArchiveRestore;
pub use archive_x::ArchiveX;
pub use armchair::Armchair;
pub use arrow_big_down::ArrowBigDown;
pub use arrow_big_down_dash::ArrowBigDownDash;
pub use arrow_big_left::ArrowBigLeft;
pub use arrow_big_left_dash::ArrowBigLeftDash;
pub use arrow_big_right::ArrowBigRight;
pub use arrow_big_right_dash::ArrowBigRightDash;
pub use arrow_big_up::ArrowBigUp;
pub use arrow_big_up_dash::ArrowBigUpDash;
pub use arrow_down::ArrowDown;
pub use arrow_down_0_1::ArrowDown01;
pub use arrow_down_1_0::ArrowDown10;
pub use arrow_down_a_z::ArrowDownAZ;
pub use arrow_down_from_line::ArrowDownFromLine;
pub use arrow_down_left::ArrowDownLeft;
pub use arrow_down_narrow_wide::ArrowDownNarrowWide;
pub use arrow_down_right::ArrowDownRight;
pub use arrow_down_to_dot::ArrowDownToDot;
pub use arrow_down_to_line::ArrowDownToLine;
pub use arrow_down_up::ArrowDownUp;
pub use arrow_down_wide_narrow::ArrowDownWideNarrow;
pub use arrow_down_z_a::ArrowDownZA;
pub use arrow_left::ArrowLeft;
pub use arrow_left_from_line::ArrowLeftFromLine;
pub use arrow_left_right::ArrowLeftRight;
pub use arrow_left_to_line::ArrowLeftToLine;
pub use arrow_right::ArrowRight;
pub use arrow_right_from_line::ArrowRightFromLine;
pub use arrow_right_left::ArrowRightLeft;
pub use arrow_right_to_line::ArrowRightToLine;
pub use arrow_up::ArrowUp;
pub use arrow_up_0_1::ArrowUp01;
pub use arrow_up_1_0::ArrowUp10;
pub use arrow_up_a_z::ArrowUpAZ;
pub use arrow_up_down::ArrowUpDown;
pub use arrow_up_from_dot::ArrowUpFromDot;
pub use arrow_up_from_line::ArrowUpFromLine;
pub use arrow_up_left::ArrowUpLeft;
pub use arrow_up_narrow_wide::ArrowUpNarrowWide;
pub use arrow_up_right::ArrowUpRight;
pub use arrow_up_to_line::ArrowUpToLine;
pub use arrow_up_wide_narrow::ArrowUpWideNarrow;
pub use arrow_up_z_a::ArrowUpZA;
pub use arrows_up_from_line::ArrowsUpFromLine;
pub use asterisk::Asterisk;
pub use astroid::Astroid;
pub use at_sign::AtSign;
pub use atom::Atom;
pub use audio_lines::AudioLines;
pub use audio_waveform::AudioWaveform;
pub use award::Award;
pub use axe::Axe;
pub use axis_3d::Axis3d;
pub use baby::Baby;
pub use backpack::Backpack;
pub use badge::Badge;
pub use badge_alert::BadgeAlert;
pub use badge_cent::BadgeCent;
pub use badge_check::BadgeCheck;
pub use badge_dollar_sign::BadgeDollarSign;
pub use badge_euro::BadgeEuro;
pub use badge_indian_rupee::BadgeIndianRupee;
pub use badge_info::BadgeInfo;
pub use badge_japanese_yen::BadgeJapaneseYen;
pub use badge_minus::BadgeMinus;
pub use badge_percent::BadgePercent;
pub use badge_plus::BadgePlus;
pub use badge_pound_sterling::BadgePoundSterling;
pub use badge_question_mark::BadgeQuestionMark;
pub use badge_russian_ruble::BadgeRussianRuble;
pub use badge_swiss_franc::BadgeSwissFranc;
pub use badge_turkish_lira::BadgeTurkishLira;
pub use badge_x::BadgeX;
pub use baggage_claim::BaggageClaim;
pub use balloon::Balloon;
pub use ban::Ban;
pub use banana::Banana;
pub use bandage::Bandage;
pub use banknote::Banknote;
pub use banknote_arrow_down::BanknoteArrowDown;
pub use banknote_arrow_up::BanknoteArrowUp;
pub use banknote_x::BanknoteX;
pub use barcode::Barcode;
pub use barrel::Barrel;
pub use baseline::Baseline;
pub use bath::Bath;
pub use battery::Battery;
pub use battery_charging::BatteryCharging;
pub use battery_full::BatteryFull;
pub use battery_low::BatteryLow;
pub use battery_medium::BatteryMedium;
pub use battery_plus::BatteryPlus;
pub use battery_warning::BatteryWarning;
pub use beaker::Beaker;
pub use bean::Bean;
pub use bean_off::BeanOff;
pub use bed::Bed;
pub use bed_double::BedDouble;
pub use bed_single::BedSingle;
pub use beef::Beef;
pub use beef_off::BeefOff;
pub use beer::Beer;
pub use beer_off::BeerOff;
pub use bell::Bell;
pub use bell_check::BellCheck;
pub use bell_dot::BellDot;
pub use bell_electric::BellElectric;
pub use bell_minus::BellMinus;
pub use bell_off::BellOff;
pub use bell_plus::BellPlus;
pub use bell_ring::BellRing;
pub use between_horizontal_end::BetweenHorizontalEnd;
pub use between_horizontal_start::BetweenHorizontalStart;
pub use between_vertical_end::BetweenVerticalEnd;
pub use between_vertical_start::BetweenVerticalStart;
pub use biceps_flexed::BicepsFlexed;
pub use bike::Bike;
pub use binary::Binary;
pub use binoculars::Binoculars;
pub use biohazard::Biohazard;
pub use bird::Bird;
pub use birdhouse::Birdhouse;
pub use bitcoin::Bitcoin;
pub use blend::Blend;
pub use blinds::Blinds;
pub use blocks::Blocks;
pub use bluetooth::Bluetooth;
pub use bluetooth_connected::BluetoothConnected;
pub use bluetooth_off::BluetoothOff;
pub use bluetooth_searching::BluetoothSearching;
pub use bold::Bold;
pub use bolt::Bolt;
pub use bomb::Bomb;
pub use bone::Bone;
pub use book::Book;
pub use book_a::BookA;
pub use book_alert::BookAlert;
pub use book_audio::BookAudio;
pub use book_check::BookCheck;
pub use book_copy::BookCopy;
pub use book_dashed::BookDashed;
pub use book_down::BookDown;
pub use book_headphones::BookHeadphones;
pub use book_heart::BookHeart;
pub use book_image::BookImage;
pub use book_key::BookKey;
pub use book_lock::BookLock;
pub use book_marked::BookMarked;
pub use book_minus::BookMinus;
pub use book_open::BookOpen;
pub use book_open_check::BookOpenCheck;
pub use book_open_text::BookOpenText;
pub use book_plus::BookPlus;
pub use book_search::BookSearch;
pub use book_text::BookText;
pub use book_type::BookType;
pub use book_up::BookUp;
pub use book_up_2::BookUp2;
pub use book_user::BookUser;
pub use book_x::BookX;
pub use bookmark::Bookmark;
pub use bookmark_check::BookmarkCheck;
pub use bookmark_minus::BookmarkMinus;
pub use bookmark_off::BookmarkOff;
pub use bookmark_plus::BookmarkPlus;
pub use bookmark_x::BookmarkX;
pub use boom_box::BoomBox;
pub use bot::Bot;
pub use bot_message_square::BotMessageSquare;
pub use bot_off::BotOff;
pub use bottle_wine::BottleWine;
pub use bow_arrow::BowArrow;
pub use r#box::Box;
pub use boxes::Boxes;
pub use braces::Braces;
pub use brackets::Brackets;
pub use brain::Brain;
pub use brain_circuit::BrainCircuit;
pub use brain_cog::BrainCog;
pub use brick_wall::BrickWall;
pub use brick_wall_fire::BrickWallFire;
pub use brick_wall_shield::BrickWallShield;
pub use briefcase::Briefcase;
pub use briefcase_business::BriefcaseBusiness;
pub use briefcase_conveyor_belt::BriefcaseConveyorBelt;
pub use briefcase_medical::BriefcaseMedical;
pub use bring_to_front::BringToFront;
pub use brush::Brush;
pub use brush_cleaning::BrushCleaning;
pub use bubbles::Bubbles;
pub use bug::Bug;
pub use bug_off::BugOff;
pub use bug_play::BugPlay;
pub use building::Building;
pub use building_2::Building2;
pub use bus::Bus;
pub use bus_front::BusFront;
pub use cable::Cable;
pub use cable_car::CableCar;
pub use cake::Cake;
pub use cake_slice::CakeSlice;
pub use calculator::Calculator;
pub use calendar::Calendar;
pub use calendar_1::Calendar1;
pub use calendar_arrow_down::CalendarArrowDown;
pub use calendar_arrow_up::CalendarArrowUp;
pub use calendar_check::CalendarCheck;
pub use calendar_check_2::CalendarCheck2;
pub use calendar_clock::CalendarClock;
pub use calendar_cog::CalendarCog;
pub use calendar_days::CalendarDays;
pub use calendar_fold::CalendarFold;
pub use calendar_heart::CalendarHeart;
pub use calendar_minus::CalendarMinus;
pub use calendar_minus_2::CalendarMinus2;
pub use calendar_off::CalendarOff;
pub use calendar_plus::CalendarPlus;
pub use calendar_plus_2::CalendarPlus2;
pub use calendar_range::CalendarRange;
pub use calendar_search::CalendarSearch;
pub use calendar_sync::CalendarSync;
pub use calendar_x::CalendarX;
pub use calendar_x_2::CalendarX2;
pub use calendars::Calendars;
pub use camera::Camera;
pub use camera_off::CameraOff;
pub use candy::Candy;
pub use candy_cane::CandyCane;
pub use candy_off::CandyOff;
pub use cannabis::Cannabis;
pub use cannabis_off::CannabisOff;
pub use captions::Captions;
pub use captions_off::CaptionsOff;
pub use car::Car;
pub use car_front::CarFront;
pub use car_taxi_front::CarTaxiFront;
pub use caravan::Caravan;
pub use card_sim::CardSim;
pub use carrot::Carrot;
pub use case_lower::CaseLower;
pub use case_sensitive::CaseSensitive;
pub use case_upper::CaseUpper;
pub use cassette_tape::CassetteTape;
pub use cast::Cast;
pub use castle::Castle;
pub use cat::Cat;
pub use cctv::Cctv;
pub use cctv_off::CctvOff;
pub use chart_area::ChartArea;
pub use chart_bar::ChartBar;
pub use chart_bar_big::ChartBarBig;
pub use chart_bar_decreasing::ChartBarDecreasing;
pub use chart_bar_increasing::ChartBarIncreasing;
pub use chart_bar_stacked::ChartBarStacked;
pub use chart_candlestick::ChartCandlestick;
pub use chart_column::ChartColumn;
pub use chart_column_big::ChartColumnBig;
pub use chart_column_decreasing::ChartColumnDecreasing;
pub use chart_column_increasing::ChartColumnIncreasing;
pub use chart_column_stacked::ChartColumnStacked;
pub use chart_gantt::ChartGantt;
pub use chart_line::ChartLine;
pub use chart_network::ChartNetwork;
pub use chart_no_axes_column::ChartNoAxesColumn;
pub use chart_no_axes_column_decreasing::ChartNoAxesColumnDecreasing;
pub use chart_no_axes_column_increasing::ChartNoAxesColumnIncreasing;
pub use chart_no_axes_combined::ChartNoAxesCombined;
pub use chart_no_axes_gantt::ChartNoAxesGantt;
pub use chart_pie::ChartPie;
pub use chart_scatter::ChartScatter;
pub use chart_spline::ChartSpline;
pub use check::Check;
pub use check_check::CheckCheck;
pub use check_line::CheckLine;
pub use chef_hat::ChefHat;
pub use cherry::Cherry;
pub use chess_bishop::ChessBishop;
pub use chess_king::ChessKing;
pub use chess_knight::ChessKnight;
pub use chess_pawn::ChessPawn;
pub use chess_queen::ChessQueen;
pub use chess_rook::ChessRook;
pub use chevron_down::ChevronDown;
pub use chevron_first::ChevronFirst;
pub use chevron_last::ChevronLast;
pub use chevron_left::ChevronLeft;
pub use chevron_right::ChevronRight;
pub use chevron_up::ChevronUp;
pub use chevrons_down::ChevronsDown;
pub use chevrons_down_up::ChevronsDownUp;
pub use chevrons_left::ChevronsLeft;
pub use chevrons_left_right::ChevronsLeftRight;
pub use chevrons_left_right_ellipsis::ChevronsLeftRightEllipsis;
pub use chevrons_right::ChevronsRight;
pub use chevrons_right_left::ChevronsRightLeft;
pub use chevrons_up::ChevronsUp;
pub use chevrons_up_down::ChevronsUpDown;
pub use church::Church;
pub use cigarette::Cigarette;
pub use cigarette_off::CigaretteOff;
pub use circle::Circle;
pub use circle_alert::CircleAlert;
pub use circle_arrow_down::CircleArrowDown;
pub use circle_arrow_left::CircleArrowLeft;
pub use circle_arrow_out_down_left::CircleArrowOutDownLeft;
pub use circle_arrow_out_down_right::CircleArrowOutDownRight;
pub use circle_arrow_out_up_left::CircleArrowOutUpLeft;
pub use circle_arrow_out_up_right::CircleArrowOutUpRight;
pub use circle_arrow_right::CircleArrowRight;
pub use circle_arrow_up::CircleArrowUp;
pub use circle_check::CircleCheck;
pub use circle_check_big::CircleCheckBig;
pub use circle_chevron_down::CircleChevronDown;
pub use circle_chevron_left::CircleChevronLeft;
pub use circle_chevron_right::CircleChevronRight;
pub use circle_chevron_up::CircleChevronUp;
pub use circle_dashed::CircleDashed;
pub use circle_divide::CircleDivide;
pub use circle_dollar_sign::CircleDollarSign;
pub use circle_dot::CircleDot;
pub use circle_dot_dashed::CircleDotDashed;
pub use circle_ellipsis::CircleEllipsis;
pub use circle_equal::CircleEqual;
pub use circle_fading_arrow_up::CircleFadingArrowUp;
pub use circle_fading_plus::CircleFadingPlus;
pub use circle_gauge::CircleGauge;
pub use circle_minus::CircleMinus;
pub use circle_off::CircleOff;
pub use circle_parking::CircleParking;
pub use circle_parking_off::CircleParkingOff;
pub use circle_pause::CirclePause;
pub use circle_percent::CirclePercent;
pub use circle_pile::CirclePile;
pub use circle_play::CirclePlay;
pub use circle_plus::CirclePlus;
pub use circle_pound_sterling::CirclePoundSterling;
pub use circle_power::CirclePower;
pub use circle_question_mark::CircleQuestionMark;
pub use circle_slash::CircleSlash;
pub use circle_slash_2::CircleSlash2;
pub use circle_small::CircleSmall;
pub use circle_star::CircleStar;
pub use circle_stop::CircleStop;
pub use circle_user::CircleUser;
pub use circle_user_round::CircleUserRound;
pub use circle_x::CircleX;
pub use circuit_board::CircuitBoard;
pub use citrus::Citrus;
pub use clapperboard::Clapperboard;
pub use clipboard::Clipboard;
pub use clipboard_check::ClipboardCheck;
pub use clipboard_clock::ClipboardClock;
pub use clipboard_copy::ClipboardCopy;
pub use clipboard_list::ClipboardList;
pub use clipboard_minus::ClipboardMinus;
pub use clipboard_paste::ClipboardPaste;
pub use clipboard_pen::ClipboardPen;
pub use clipboard_pen_line::ClipboardPenLine;
pub use clipboard_plus::ClipboardPlus;
pub use clipboard_type::ClipboardType;
pub use clipboard_x::ClipboardX;
pub use clock::Clock;
pub use clock_1::Clock1;
pub use clock_2::Clock2;
pub use clock_3::Clock3;
pub use clock_4::Clock4;
pub use clock_5::Clock5;
pub use clock_6::Clock6;
pub use clock_7::Clock7;
pub use clock_8::Clock8;
pub use clock_9::Clock9;
pub use clock_10::Clock10;
pub use clock_11::Clock11;
pub use clock_12::Clock12;
pub use clock_alert::ClockAlert;
pub use clock_arrow_down::ClockArrowDown;
pub use clock_arrow_up::ClockArrowUp;
pub use clock_check::ClockCheck;
pub use clock_fading::ClockFading;
pub use clock_plus::ClockPlus;
pub use closed_caption::ClosedCaption;
pub use cloud::Cloud;
pub use cloud_alert::CloudAlert;
pub use cloud_backup::CloudBackup;
pub use cloud_check::CloudCheck;
pub use cloud_cog::CloudCog;
pub use cloud_download::CloudDownload;
pub use cloud_drizzle::CloudDrizzle;
pub use cloud_fog::CloudFog;
pub use cloud_hail::CloudHail;
pub use cloud_lightning::CloudLightning;
pub use cloud_moon::CloudMoon;
pub use cloud_moon_rain::CloudMoonRain;
pub use cloud_off::CloudOff;
pub use cloud_rain::CloudRain;
pub use cloud_rain_wind::CloudRainWind;
pub use cloud_snow::CloudSnow;
pub use cloud_sun::CloudSun;
pub use cloud_sun_rain::CloudSunRain;
pub use cloud_sync::CloudSync;
pub use cloud_upload::CloudUpload;
pub use cloudy::Cloudy;
pub use clover::Clover;
pub use club::Club;
pub use code::Code;
pub use code_xml::CodeXml;
pub use coffee::Coffee;
pub use cog::Cog;
pub use coins::Coins;
pub use columns_2::Columns2;
pub use columns_3::Columns3;
pub use columns_3_cog::Columns3Cog;
pub use columns_4::Columns4;
pub use combine::Combine;
pub use command::Command;
pub use compass::Compass;
pub use component::Component;
pub use computer::Computer;
pub use concierge_bell::ConciergeBell;
pub use cone::Cone;
pub use construction::Construction;
pub use contact::Contact;
pub use contact_round::ContactRound;
pub use container::Container;
pub use contrast::Contrast;
pub use cookie::Cookie;
pub use cooking_pot::CookingPot;
pub use copy::Copy;
pub use copy_check::CopyCheck;
pub use copy_minus::CopyMinus;
pub use copy_plus::CopyPlus;
pub use copy_slash::CopySlash;
pub use copy_x::CopyX;
pub use copyleft::Copyleft;
pub use copyright::Copyright;
pub use corner_down_left::CornerDownLeft;
pub use corner_down_right::CornerDownRight;
pub use corner_left_down::CornerLeftDown;
pub use corner_left_up::CornerLeftUp;
pub use corner_right_down::CornerRightDown;
pub use corner_right_up::CornerRightUp;
pub use corner_up_left::CornerUpLeft;
pub use corner_up_right::CornerUpRight;
pub use cpu::Cpu;
pub use creative_commons::CreativeCommons;
pub use credit_card::CreditCard;
pub use croissant::Croissant;
pub use crop::Crop;
pub use cross::Cross;
pub use crosshair::Crosshair;
pub use crown::Crown;
pub use cuboid::Cuboid;
pub use cup_soda::CupSoda;
pub use currency::Currency;
pub use cylinder::Cylinder;
pub use dam::Dam;
pub use database::Database;
pub use database_backup::DatabaseBackup;
pub use database_search::DatabaseSearch;
pub use database_zap::DatabaseZap;
pub use decimals_arrow_left::DecimalsArrowLeft;
pub use decimals_arrow_right::DecimalsArrowRight;
pub use delete::Delete;
pub use dessert::Dessert;
pub use diameter::Diameter;
pub use diamond::Diamond;
pub use diamond_minus::DiamondMinus;
pub use diamond_percent::DiamondPercent;
pub use diamond_plus::DiamondPlus;
pub use dice_1::Dice1;
pub use dice_2::Dice2;
pub use dice_3::Dice3;
pub use dice_4::Dice4;
pub use dice_5::Dice5;
pub use dice_6::Dice6;
pub use dices::Dices;
pub use diff::Diff;
pub use disc::Disc;
pub use disc_2::Disc2;
pub use disc_3::Disc3;
pub use disc_album::DiscAlbum;
pub use divide::Divide;
pub use dna::Dna;
pub use dna_off::DnaOff;
pub use dock::Dock;
pub use dog::Dog;
pub use dollar_sign::DollarSign;
pub use donut::Donut;
pub use door_closed::DoorClosed;
pub use door_closed_locked::DoorClosedLocked;
pub use door_open::DoorOpen;
pub use dot::Dot;
pub use download::Download;
pub use drafting_compass::DraftingCompass;
pub use drama::Drama;
pub use drill::Drill;
pub use drone::Drone;
pub use droplet::Droplet;
pub use droplet_off::DropletOff;
pub use droplets::Droplets;
pub use drum::Drum;
pub use drumstick::Drumstick;
pub use dumbbell::Dumbbell;
pub use ear::Ear;
pub use ear_off::EarOff;
pub use earth::Earth;
pub use earth_lock::EarthLock;
pub use eclipse::Eclipse;
pub use egg::Egg;
pub use egg_fried::EggFried;
pub use egg_off::EggOff;
pub use ellipse::Ellipse;
pub use ellipsis::Ellipsis;
pub use ellipsis_vertical::EllipsisVertical;
pub use equal::Equal;
pub use equal_approximately::EqualApproximately;
pub use equal_not::EqualNot;
pub use eraser::Eraser;
pub use ethernet_port::EthernetPort;
pub use euro::Euro;
pub use ev_charger::EvCharger;
pub use expand::Expand;
pub use external_link::ExternalLink;
pub use eye::Eye;
pub use eye_closed::EyeClosed;
pub use eye_off::EyeOff;
pub use factory::Factory;
pub use fan::Fan;
pub use fast_forward::FastForward;
pub use feather::Feather;
pub use fence::Fence;
pub use ferris_wheel::FerrisWheel;
pub use file::File;
pub use file_archive::FileArchive;
pub use file_axis_3d::FileAxis3d;
pub use file_badge::FileBadge;
pub use file_box::FileBox;
pub use file_braces::FileBraces;
pub use file_braces_corner::FileBracesCorner;
pub use file_chart_column::FileChartColumn;
pub use file_chart_column_increasing::FileChartColumnIncreasing;
pub use file_chart_line::FileChartLine;
pub use file_chart_pie::FileChartPie;
pub use file_check::FileCheck;
pub use file_check_corner::FileCheckCorner;
pub use file_clock::FileClock;
pub use file_code::FileCode;
pub use file_code_corner::FileCodeCorner;
pub use file_cog::FileCog;
pub use file_diff::FileDiff;
pub use file_digit::FileDigit;
pub use file_down::FileDown;
pub use file_exclamation_point::FileExclamationPoint;
pub use file_headphone::FileHeadphone;
pub use file_heart::FileHeart;
pub use file_image::FileImage;
pub use file_input::FileInput;
pub use file_key::FileKey;
pub use file_lock::FileLock;
pub use file_minus::FileMinus;
pub use file_minus_corner::FileMinusCorner;
pub use file_music::FileMusic;
pub use file_output::FileOutput;
pub use file_pen::FilePen;
pub use file_pen_line::FilePenLine;
pub use file_play::FilePlay;
pub use file_plus::FilePlus;
pub use file_plus_corner::FilePlusCorner;
pub use file_question_mark::FileQuestionMark;
pub use file_scan::FileScan;
pub use file_search::FileSearch;
pub use file_search_corner::FileSearchCorner;
pub use file_signal::FileSignal;
pub use file_sliders::FileSliders;
pub use file_spreadsheet::FileSpreadsheet;
pub use file_stack::FileStack;
pub use file_symlink::FileSymlink;
pub use file_terminal::FileTerminal;
pub use file_text::FileText;
pub use file_type::FileType;
pub use file_type_corner::FileTypeCorner;
pub use file_up::FileUp;
pub use file_user::FileUser;
pub use file_video_camera::FileVideoCamera;
pub use file_volume::FileVolume;
pub use file_x::FileX;
pub use file_x_corner::FileXCorner;
pub use files::Files;
pub use film::Film;
pub use fingerprint_pattern::FingerprintPattern;
pub use fire_extinguisher::FireExtinguisher;
pub use fish::Fish;
pub use fish_off::FishOff;
pub use fish_symbol::FishSymbol;
pub use fishing_hook::FishingHook;
pub use fishing_rod::FishingRod;
pub use flag::Flag;
pub use flag_off::FlagOff;
pub use flag_triangle_left::FlagTriangleLeft;
pub use flag_triangle_right::FlagTriangleRight;
pub use flame::Flame;
pub use flame_kindling::FlameKindling;
pub use flashlight::Flashlight;
pub use flashlight_off::FlashlightOff;
pub use flask_conical::FlaskConical;
pub use flask_conical_off::FlaskConicalOff;
pub use flask_round::FlaskRound;
pub use flip_horizontal_2::FlipHorizontal2;
pub use flip_vertical_2::FlipVertical2;
pub use flower::Flower;
pub use flower_2::Flower2;
pub use focus::Focus;
pub use fold_horizontal::FoldHorizontal;
pub use fold_vertical::FoldVertical;
pub use folder::Folder;
pub use folder_archive::FolderArchive;
pub use folder_bookmark::FolderBookmark;
pub use folder_check::FolderCheck;
pub use folder_clock::FolderClock;
pub use folder_closed::FolderClosed;
pub use folder_code::FolderCode;
pub use folder_cog::FolderCog;
pub use folder_dot::FolderDot;
pub use folder_down::FolderDown;
pub use folder_git::FolderGit;
pub use folder_git_2::FolderGit2;
pub use folder_heart::FolderHeart;
pub use folder_input::FolderInput;
pub use folder_kanban::FolderKanban;
pub use folder_key::FolderKey;
pub use folder_lock::FolderLock;
pub use folder_minus::FolderMinus;
pub use folder_open::FolderOpen;
pub use folder_open_dot::FolderOpenDot;
pub use folder_output::FolderOutput;
pub use folder_pen::FolderPen;
pub use folder_plus::FolderPlus;
pub use folder_root::FolderRoot;
pub use folder_search::FolderSearch;
pub use folder_search_2::FolderSearch2;
pub use folder_symlink::FolderSymlink;
pub use folder_sync::FolderSync;
pub use folder_tree::FolderTree;
pub use folder_up::FolderUp;
pub use folder_x::FolderX;
pub use folders::Folders;
pub use footprints::Footprints;
pub use forklift::Forklift;
pub use form::Form;
pub use forward::Forward;
pub use frame::Frame;
pub use frown::Frown;
pub use fuel::Fuel;
pub use fullscreen::Fullscreen;
pub use funnel::Funnel;
pub use funnel_plus::FunnelPlus;
pub use funnel_x::FunnelX;
pub use gallery_horizontal::GalleryHorizontal;
pub use gallery_horizontal_end::GalleryHorizontalEnd;
pub use gallery_thumbnails::GalleryThumbnails;
pub use gallery_vertical::GalleryVertical;
pub use gallery_vertical_end::GalleryVerticalEnd;
pub use gamepad::Gamepad;
pub use gamepad_2::Gamepad2;
pub use gamepad_directional::GamepadDirectional;
pub use gauge::Gauge;
pub use gavel::Gavel;
pub use gem::Gem;
pub use georgian_lari::GeorgianLari;
pub use ghost::Ghost;
pub use gift::Gift;
pub use git_branch::GitBranch;
pub use git_branch_minus::GitBranchMinus;
pub use git_branch_plus::GitBranchPlus;
pub use git_commit_horizontal::GitCommitHorizontal;
pub use git_commit_vertical::GitCommitVertical;
pub use git_compare::GitCompare;
pub use git_compare_arrows::GitCompareArrows;
pub use git_fork::GitFork;
pub use git_graph::GitGraph;
pub use git_merge::GitMerge;
pub use git_merge_conflict::GitMergeConflict;
pub use git_pull_request::GitPullRequest;
pub use git_pull_request_arrow::GitPullRequestArrow;
pub use git_pull_request_closed::GitPullRequestClosed;
pub use git_pull_request_create::GitPullRequestCreate;
pub use git_pull_request_create_arrow::GitPullRequestCreateArrow;
pub use git_pull_request_draft::GitPullRequestDraft;
pub use glass_water::GlassWater;
pub use glasses::Glasses;
pub use globe::Globe;
pub use globe_lock::GlobeLock;
pub use globe_off::GlobeOff;
pub use globe_x::GlobeX;
pub use goal::Goal;
pub use gpu::Gpu;
pub use graduation_cap::GraduationCap;
pub use grape::Grape;
pub use grid_2x2::Grid2x2;
pub use grid_2x2_check::Grid2x2Check;
pub use grid_2x2_plus::Grid2x2Plus;
pub use grid_2x2_x::Grid2x2X;
pub use grid_3x2::Grid3x2;
pub use grid_3x3::Grid3x3;
pub use grip::Grip;
pub use grip_horizontal::GripHorizontal;
pub use grip_vertical::GripVertical;
pub use group::Group;
pub use guitar::Guitar;
pub use ham::Ham;
pub use hamburger::Hamburger;
pub use hammer::Hammer;
pub use hand::Hand;
pub use hand_coins::HandCoins;
pub use hand_fist::HandFist;
pub use hand_grab::HandGrab;
pub use hand_heart::HandHeart;
pub use hand_helping::HandHelping;
pub use hand_metal::HandMetal;
pub use hand_platter::HandPlatter;
pub use handbag::Handbag;
pub use handshake::Handshake;
pub use hard_drive::HardDrive;
pub use hard_drive_download::HardDriveDownload;
pub use hard_drive_upload::HardDriveUpload;
pub use hard_hat::HardHat;
pub use hash::Hash;
pub use hat_glasses::HatGlasses;
pub use haze::Haze;
pub use hd::Hd;
pub use hdmi_port::HdmiPort;
pub use heading::Heading;
pub use heading_1::Heading1;
pub use heading_2::Heading2;
pub use heading_3::Heading3;
pub use heading_4::Heading4;
pub use heading_5::Heading5;
pub use heading_6::Heading6;
pub use headphone_off::HeadphoneOff;
pub use headphones::Headphones;
pub use headset::Headset;
pub use heart::Heart;
pub use heart_crack::HeartCrack;
pub use heart_handshake::HeartHandshake;
pub use heart_minus::HeartMinus;
pub use heart_off::HeartOff;
pub use heart_plus::HeartPlus;
pub use heart_pulse::HeartPulse;
pub use heart_x::HeartX;
pub use heater::Heater;
pub use helicopter::Helicopter;
pub use hexagon::Hexagon;
pub use highlighter::Highlighter;
pub use history::History;
pub use hop::Hop;
pub use hop_off::HopOff;
pub use hospital::Hospital;
pub use hotel::Hotel;
pub use hourglass::Hourglass;
pub use house::House;
pub use house_heart::HouseHeart;
pub use house_plug::HousePlug;
pub use house_plus::HousePlus;
pub use house_wifi::HouseWifi;
pub use ice_cream_bowl::IceCreamBowl;
pub use ice_cream_cone::IceCreamCone;
pub use id_card::IdCard;
pub use id_card_lanyard::IdCardLanyard;
pub use image::Image;
pub use image_down::ImageDown;
pub use image_minus::ImageMinus;
pub use image_off::ImageOff;
pub use image_play::ImagePlay;
pub use image_plus::ImagePlus;
pub use image_up::ImageUp;
pub use image_upscale::ImageUpscale;
pub use images::Images;
pub use import::Import;
pub use inbox::Inbox;
pub use indian_rupee::IndianRupee;
pub use infinity::Infinity;
pub use info::Info;
pub use inspection_panel::InspectionPanel;
pub use italic::Italic;
pub use iteration_ccw::IterationCcw;
pub use iteration_cw::IterationCw;
pub use japanese_yen::JapaneseYen;
pub use joystick::Joystick;
pub use kanban::Kanban;
pub use kayak::Kayak;
pub use key::Key;
pub use key_round::KeyRound;
pub use key_square::KeySquare;
pub use keyboard::Keyboard;
pub use keyboard_music::KeyboardMusic;
pub use keyboard_off::KeyboardOff;
pub use lamp::Lamp;
pub use lamp_ceiling::LampCeiling;
pub use lamp_desk::LampDesk;
pub use lamp_floor::LampFloor;
pub use lamp_wall_down::LampWallDown;
pub use lamp_wall_up::LampWallUp;
pub use land_plot::LandPlot;
pub use landmark::Landmark;
pub use languages::Languages;
pub use laptop::Laptop;
pub use laptop_minimal::LaptopMinimal;
pub use laptop_minimal_check::LaptopMinimalCheck;
pub use lasso::Lasso;
pub use lasso_select::LassoSelect;
pub use laugh::Laugh;
pub use layers::Layers;
pub use layers_2::Layers2;
pub use layers_minus::LayersMinus;
pub use layers_plus::LayersPlus;
pub use layout_dashboard::LayoutDashboard;
pub use layout_grid::LayoutGrid;
pub use layout_list::LayoutList;
pub use layout_panel_left::LayoutPanelLeft;
pub use layout_panel_top::LayoutPanelTop;
pub use layout_template::LayoutTemplate;
pub use leaf::Leaf;
pub use leafy_green::LeafyGreen;
pub use lectern::Lectern;
pub use lens_concave::LensConcave;
pub use lens_convex::LensConvex;
pub use library::Library;
pub use library_big::LibraryBig;
pub use life_buoy::LifeBuoy;
pub use ligature::Ligature;
pub use lightbulb::Lightbulb;
pub use lightbulb_off::LightbulbOff;
pub use line_dot_right_horizontal::LineDotRightHorizontal;
pub use line_squiggle::LineSquiggle;
pub use line_style::LineStyle;
pub use link::Link;
pub use link_2::Link2;
pub use link_2_off::Link2Off;
pub use list::List;
pub use list_check::ListCheck;
pub use list_checks::ListChecks;
pub use list_chevrons_down_up::ListChevronsDownUp;
pub use list_chevrons_up_down::ListChevronsUpDown;
pub use list_collapse::ListCollapse;
pub use list_end::ListEnd;
pub use list_filter::ListFilter;
pub use list_filter_plus::ListFilterPlus;
pub use list_indent_decrease::ListIndentDecrease;
pub use list_indent_increase::ListIndentIncrease;
pub use list_minus::ListMinus;
pub use list_music::ListMusic;
pub use list_ordered::ListOrdered;
pub use list_plus::ListPlus;
pub use list_restart::ListRestart;
pub use list_start::ListStart;
pub use list_todo::ListTodo;
pub use list_tree::ListTree;
pub use list_video::ListVideo;
pub use list_x::ListX;
pub use loader::Loader;
pub use loader_circle::LoaderCircle;
pub use loader_pinwheel::LoaderPinwheel;
pub use locate::Locate;
pub use locate_fixed::LocateFixed;
pub use locate_off::LocateOff;
pub use lock::Lock;
pub use lock_keyhole::LockKeyhole;
pub use lock_keyhole_open::LockKeyholeOpen;
pub use lock_open::LockOpen;
pub use log_in::LogIn;
pub use log_out::LogOut;
pub use logs::Logs;
pub use lollipop::Lollipop;
pub use luggage::Luggage;
pub use magnet::Magnet;
pub use mail::Mail;
pub use mail_check::MailCheck;
pub use mail_minus::MailMinus;
pub use mail_open::MailOpen;
pub use mail_plus::MailPlus;
pub use mail_question_mark::MailQuestionMark;
pub use mail_search::MailSearch;
pub use mail_warning::MailWarning;
pub use mail_x::MailX;
pub use mailbox::Mailbox;
pub use mails::Mails;
pub use map::Map;
pub use map_minus::MapMinus;
pub use map_pin::MapPin;
pub use map_pin_check::MapPinCheck;
pub use map_pin_check_inside::MapPinCheckInside;
pub use map_pin_house::MapPinHouse;
pub use map_pin_minus::MapPinMinus;
pub use map_pin_minus_inside::MapPinMinusInside;
pub use map_pin_off::MapPinOff;
pub use map_pin_pen::MapPinPen;
pub use map_pin_plus::MapPinPlus;
pub use map_pin_plus_inside::MapPinPlusInside;
pub use map_pin_search::MapPinSearch;
pub use map_pin_x::MapPinX;
pub use map_pin_x_inside::MapPinXInside;
pub use map_pinned::MapPinned;
pub use map_plus::MapPlus;
pub use mars::Mars;
pub use mars_stroke::MarsStroke;
pub use martini::Martini;
pub use maximize::Maximize;
pub use maximize_2::Maximize2;
pub use medal::Medal;
pub use megaphone::Megaphone;
pub use megaphone_off::MegaphoneOff;
pub use meh::Meh;
pub use memory_stick::MemoryStick;
pub use menu::Menu;
pub use merge::Merge;
pub use message_circle::MessageCircle;
pub use message_circle_check::MessageCircleCheck;
pub use message_circle_code::MessageCircleCode;
pub use message_circle_dashed::MessageCircleDashed;
pub use message_circle_heart::MessageCircleHeart;
pub use message_circle_more::MessageCircleMore;
pub use message_circle_off::MessageCircleOff;
pub use message_circle_plus::MessageCirclePlus;
pub use message_circle_question_mark::MessageCircleQuestionMark;
pub use message_circle_reply::MessageCircleReply;
pub use message_circle_warning::MessageCircleWarning;
pub use message_circle_x::MessageCircleX;
pub use message_square::MessageSquare;
pub use message_square_check::MessageSquareCheck;
pub use message_square_code::MessageSquareCode;
pub use message_square_dashed::MessageSquareDashed;
pub use message_square_diff::MessageSquareDiff;
pub use message_square_dot::MessageSquareDot;
pub use message_square_heart::MessageSquareHeart;
pub use message_square_lock::MessageSquareLock;
pub use message_square_more::MessageSquareMore;
pub use message_square_off::MessageSquareOff;
pub use message_square_plus::MessageSquarePlus;
pub use message_square_quote::MessageSquareQuote;
pub use message_square_reply::MessageSquareReply;
pub use message_square_share::MessageSquareShare;
pub use message_square_text::MessageSquareText;
pub use message_square_warning::MessageSquareWarning;
pub use message_square_x::MessageSquareX;
pub use messages_square::MessagesSquare;
pub use metronome::Metronome;
pub use mic::Mic;
pub use mic_off::MicOff;
pub use mic_vocal::MicVocal;
pub use microchip::Microchip;
pub use microscope::Microscope;
pub use microwave::Microwave;
pub use milestone::Milestone;
pub use milk::Milk;
pub use milk_off::MilkOff;
pub use minimize::Minimize;
pub use minimize_2::Minimize2;
pub use minus::Minus;
pub use mirror_rectangular::MirrorRectangular;
pub use mirror_round::MirrorRound;
pub use monitor::Monitor;
pub use monitor_check::MonitorCheck;
pub use monitor_cloud::MonitorCloud;
pub use monitor_cog::MonitorCog;
pub use monitor_dot::MonitorDot;
pub use monitor_down::MonitorDown;
pub use monitor_off::MonitorOff;
pub use monitor_pause::MonitorPause;
pub use monitor_play::MonitorPlay;
pub use monitor_smartphone::MonitorSmartphone;
pub use monitor_speaker::MonitorSpeaker;
pub use monitor_stop::MonitorStop;
pub use monitor_up::MonitorUp;
pub use monitor_x::MonitorX;
pub use moon::Moon;
pub use moon_star::MoonStar;
pub use motorbike::Motorbike;
pub use mountain::Mountain;
pub use mountain_snow::MountainSnow;
pub use mouse::Mouse;
pub use mouse_left::MouseLeft;
pub use mouse_off::MouseOff;
pub use mouse_pointer::MousePointer;
pub use mouse_pointer_2::MousePointer2;
pub use mouse_pointer_2_off::MousePointer2Off;
pub use mouse_pointer_ban::MousePointerBan;
pub use mouse_pointer_click::MousePointerClick;
pub use mouse_right::MouseRight;
pub use r#move::Move;
pub use move_3d::Move3d;
pub use move_diagonal::MoveDiagonal;
pub use move_diagonal_2::MoveDiagonal2;
pub use move_down::MoveDown;
pub use move_down_left::MoveDownLeft;
pub use move_down_right::MoveDownRight;
pub use move_horizontal::MoveHorizontal;
pub use move_left::MoveLeft;
pub use move_right::MoveRight;
pub use move_up::MoveUp;
pub use move_up_left::MoveUpLeft;
pub use move_up_right::MoveUpRight;
pub use move_vertical::MoveVertical;
pub use music::Music;
pub use music_2::Music2;
pub use music_3::Music3;
pub use music_4::Music4;
pub use navigation::Navigation;
pub use navigation_2::Navigation2;
pub use navigation_2_off::Navigation2Off;
pub use navigation_off::NavigationOff;
pub use network::Network;
pub use newspaper::Newspaper;
pub use nfc::Nfc;
pub use non_binary::NonBinary;
pub use notebook::Notebook;
pub use notebook_pen::NotebookPen;
pub use notebook_tabs::NotebookTabs;
pub use notebook_text::NotebookText;
pub use notepad_text::NotepadText;
pub use notepad_text_dashed::NotepadTextDashed;
pub use nut::Nut;
pub use nut_off::NutOff;
pub use octagon::Octagon;
pub use octagon_alert::OctagonAlert;
pub use octagon_minus::OctagonMinus;
pub use octagon_pause::OctagonPause;
pub use octagon_x::OctagonX;
pub use omega::Omega;
pub use option::Option;
pub use orbit::Orbit;
pub use origami::Origami;
pub use package::Package;
pub use package_2::Package2;
pub use package_check::PackageCheck;
pub use package_minus::PackageMinus;
pub use package_open::PackageOpen;
pub use package_plus::PackagePlus;
pub use package_search::PackageSearch;
pub use package_x::PackageX;
pub use paint_bucket::PaintBucket;
pub use paint_roller::PaintRoller;
pub use paintbrush::Paintbrush;
pub use paintbrush_vertical::PaintbrushVertical;
pub use palette::Palette;
pub use panda::Panda;
pub use panel_bottom::PanelBottom;
pub use panel_bottom_close::PanelBottomClose;
pub use panel_bottom_dashed::PanelBottomDashed;
pub use panel_bottom_open::PanelBottomOpen;
pub use panel_left::PanelLeft;
pub use panel_left_close::PanelLeftClose;
pub use panel_left_dashed::PanelLeftDashed;
pub use panel_left_open::PanelLeftOpen;
pub use panel_left_right_dashed::PanelLeftRightDashed;
pub use panel_right::PanelRight;
pub use panel_right_close::PanelRightClose;
pub use panel_right_dashed::PanelRightDashed;
pub use panel_right_open::PanelRightOpen;
pub use panel_top::PanelTop;
pub use panel_top_bottom_dashed::PanelTopBottomDashed;
pub use panel_top_close::PanelTopClose;
pub use panel_top_dashed::PanelTopDashed;
pub use panel_top_open::PanelTopOpen;
pub use panels_left_bottom::PanelsLeftBottom;
pub use panels_right_bottom::PanelsRightBottom;
pub use panels_top_left::PanelsTopLeft;
pub use paperclip::Paperclip;
pub use parentheses::Parentheses;
pub use parking_meter::ParkingMeter;
pub use party_popper::PartyPopper;
pub use pause::Pause;
pub use paw_print::PawPrint;
pub use pc_case::PcCase;
pub use pen::Pen;
pub use pen_line::PenLine;
pub use pen_off::PenOff;
pub use pen_tool::PenTool;
pub use pencil::Pencil;
pub use pencil_line::PencilLine;
pub use pencil_off::PencilOff;
pub use pencil_ruler::PencilRuler;
pub use pentagon::Pentagon;
pub use percent::Percent;
pub use person_standing::PersonStanding;
pub use philippine_peso::PhilippinePeso;
pub use phone::Phone;
pub use phone_call::PhoneCall;
pub use phone_forwarded::PhoneForwarded;
pub use phone_incoming::PhoneIncoming;
pub use phone_missed::PhoneMissed;
pub use phone_off::PhoneOff;
pub use phone_outgoing::PhoneOutgoing;
pub use pi::Pi;
pub use piano::Piano;
pub use pickaxe::Pickaxe;
pub use picture_in_picture::PictureInPicture;
pub use picture_in_picture_2::PictureInPicture2;
pub use piggy_bank::PiggyBank;
pub use pilcrow::Pilcrow;
pub use pilcrow_left::PilcrowLeft;
pub use pilcrow_right::PilcrowRight;
pub use pill::Pill;
pub use pill_bottle::PillBottle;
pub use pin::Pin;
pub use pin_off::PinOff;
pub use pipette::Pipette;
pub use pizza::Pizza;
pub use plane::Plane;
pub use plane_landing::PlaneLanding;
pub use plane_takeoff::PlaneTakeoff;
pub use play::Play;
pub use plug::Plug;
pub use plug_2::Plug2;
pub use plug_zap::PlugZap;
pub use plus::Plus;
pub use pocket_knife::PocketKnife;
pub use podcast::Podcast;
pub use pointer::Pointer;
pub use pointer_off::PointerOff;
pub use popcorn::Popcorn;
pub use popsicle::Popsicle;
pub use pound_sterling::PoundSterling;
pub use power::Power;
pub use power_off::PowerOff;
pub use presentation::Presentation;
pub use printer::Printer;
pub use printer_check::PrinterCheck;
pub use printer_x::PrinterX;
pub use projector::Projector;
pub use proportions::Proportions;
pub use puzzle::Puzzle;
pub use pyramid::Pyramid;
pub use qr_code::QrCode;
pub use quote::Quote;
pub use rabbit::Rabbit;
pub use radar::Radar;
pub use radiation::Radiation;
pub use radical::Radical;
pub use radio::Radio;
pub use radio_off::RadioOff;
pub use radio_receiver::RadioReceiver;
pub use radio_tower::RadioTower;
pub use radius::Radius;
pub use rainbow::Rainbow;
pub use rat::Rat;
pub use ratio::Ratio;
pub use receipt::Receipt;
pub use receipt_cent::ReceiptCent;
pub use receipt_euro::ReceiptEuro;
pub use receipt_indian_rupee::ReceiptIndianRupee;
pub use receipt_japanese_yen::ReceiptJapaneseYen;
pub use receipt_pound_sterling::ReceiptPoundSterling;
pub use receipt_russian_ruble::ReceiptRussianRuble;
pub use receipt_swiss_franc::ReceiptSwissFranc;
pub use receipt_text::ReceiptText;
pub use receipt_turkish_lira::ReceiptTurkishLira;
pub use rectangle_circle::RectangleCircle;
pub use rectangle_ellipsis::RectangleEllipsis;
pub use rectangle_goggles::RectangleGoggles;
pub use rectangle_horizontal::RectangleHorizontal;
pub use rectangle_vertical::RectangleVertical;
pub use recycle::Recycle;
pub use redo::Redo;
pub use redo_2::Redo2;
pub use redo_dot::RedoDot;
pub use refresh_ccw::RefreshCcw;
pub use refresh_ccw_dot::RefreshCcwDot;
pub use refresh_cw::RefreshCw;
pub use refresh_cw_off::RefreshCwOff;
pub use refrigerator::Refrigerator;
pub use regex::Regex;
pub use remove_formatting::RemoveFormatting;
pub use repeat::Repeat;
pub use repeat_1::Repeat1;
pub use repeat_2::Repeat2;
pub use repeat_off::RepeatOff;
pub use replace::Replace;
pub use replace_all::ReplaceAll;
pub use reply::Reply;
pub use reply_all::ReplyAll;
pub use rewind::Rewind;
pub use ribbon::Ribbon;
pub use road::Road;
pub use rocket::Rocket;
pub use rocking_chair::RockingChair;
pub use roller_coaster::RollerCoaster;
pub use rose::Rose;
pub use rotate_3d::Rotate3d;
pub use rotate_ccw::RotateCcw;
pub use rotate_ccw_key::RotateCcwKey;
pub use rotate_ccw_square::RotateCcwSquare;
pub use rotate_cw::RotateCw;
pub use rotate_cw_square::RotateCwSquare;
pub use route::Route;
pub use route_off::RouteOff;
pub use router::Router;
pub use rows_2::Rows2;
pub use rows_3::Rows3;
pub use rows_4::Rows4;
pub use rss::Rss;
pub use ruler::Ruler;
pub use ruler_dimension_line::RulerDimensionLine;
pub use russian_ruble::RussianRuble;
pub use sailboat::Sailboat;
pub use salad::Salad;
pub use sandwich::Sandwich;
pub use satellite::Satellite;
pub use satellite_dish::SatelliteDish;
pub use saudi_riyal::SaudiRiyal;
pub use save::Save;
pub use save_all::SaveAll;
pub use save_off::SaveOff;
pub use scale::Scale;
pub use scale_3d::Scale3d;
pub use scaling::Scaling;
pub use scan::Scan;
pub use scan_barcode::ScanBarcode;
pub use scan_eye::ScanEye;
pub use scan_face::ScanFace;
pub use scan_heart::ScanHeart;
pub use scan_line::ScanLine;
pub use scan_qr_code::ScanQrCode;
pub use scan_search::ScanSearch;
pub use scan_text::ScanText;
pub use school::School;
pub use scissors::Scissors;
pub use scissors_line_dashed::ScissorsLineDashed;
pub use scooter::Scooter;
pub use screen_share::ScreenShare;
pub use screen_share_off::ScreenShareOff;
pub use scroll::Scroll;
pub use scroll_text::ScrollText;
pub use search::Search;
pub use search_alert::SearchAlert;
pub use search_check::SearchCheck;
pub use search_code::SearchCode;
pub use search_slash::SearchSlash;
pub use search_x::SearchX;
pub use section::Section;
pub use send::Send;
pub use send_horizontal::SendHorizontal;
pub use send_to_back::SendToBack;
pub use separator_horizontal::SeparatorHorizontal;
pub use separator_vertical::SeparatorVertical;
pub use server::Server;
pub use server_cog::ServerCog;
pub use server_crash::ServerCrash;
pub use server_off::ServerOff;
pub use settings::Settings;
pub use settings_2::Settings2;
pub use shapes::Shapes;
pub use share::Share;
pub use share_2::Share2;
pub use sheet::Sheet;
pub use shell::Shell;
pub use shelving_unit::ShelvingUnit;
pub use shield::Shield;
pub use shield_alert::ShieldAlert;
pub use shield_ban::ShieldBan;
pub use shield_check::ShieldCheck;
pub use shield_cog::ShieldCog;
pub use shield_cog_corner::ShieldCogCorner;
pub use shield_ellipsis::ShieldEllipsis;
pub use shield_half::ShieldHalf;
pub use shield_minus::ShieldMinus;
pub use shield_off::ShieldOff;
pub use shield_plus::ShieldPlus;
pub use shield_question_mark::ShieldQuestionMark;
pub use shield_user::ShieldUser;
pub use shield_x::ShieldX;
pub use ship::Ship;
pub use ship_wheel::ShipWheel;
pub use shirt::Shirt;
pub use shopping_bag::ShoppingBag;
pub use shopping_basket::ShoppingBasket;
pub use shopping_cart::ShoppingCart;
pub use shovel::Shovel;
pub use shower_head::ShowerHead;
pub use shredder::Shredder;
pub use shrimp::Shrimp;
pub use shrink::Shrink;
pub use shrub::Shrub;
pub use shuffle::Shuffle;
pub use sigma::Sigma;
pub use signal::Signal;
pub use signal_high::SignalHigh;
pub use signal_low::SignalLow;
pub use signal_medium::SignalMedium;
pub use signal_zero::SignalZero;
pub use signature::Signature;
pub use signpost::Signpost;
pub use signpost_big::SignpostBig;
pub use siren::Siren;
pub use skip_back::SkipBack;
pub use skip_forward::SkipForward;
pub use skull::Skull;
pub use slash::Slash;
pub use slice::Slice;
pub use sliders_horizontal::SlidersHorizontal;
pub use sliders_vertical::SlidersVertical;
pub use smartphone::Smartphone;
pub use smartphone_charging::SmartphoneCharging;
pub use smartphone_nfc::SmartphoneNfc;
pub use smile::Smile;
pub use smile_plus::SmilePlus;
pub use snail::Snail;
pub use snowflake::Snowflake;
pub use soap_dispenser_droplet::SoapDispenserDroplet;
pub use sofa::Sofa;
pub use solar_panel::SolarPanel;
pub use soup::Soup;
pub use space::Space;
pub use spade::Spade;
pub use sparkle::Sparkle;
pub use sparkles::Sparkles;
pub use speaker::Speaker;
pub use speech::Speech;
pub use spell_check::SpellCheck;
pub use spell_check_2::SpellCheck2;
pub use spline::Spline;
pub use spline_pointer::SplinePointer;
pub use split::Split;
pub use spool::Spool;
pub use sport_shoe::SportShoe;
pub use spotlight::Spotlight;
pub use spray_can::SprayCan;
pub use sprout::Sprout;
pub use square::Square;
pub use square_activity::SquareActivity;
pub use square_arrow_down::SquareArrowDown;
pub use square_arrow_down_left::SquareArrowDownLeft;
pub use square_arrow_down_right::SquareArrowDownRight;
pub use square_arrow_left::SquareArrowLeft;
pub use square_arrow_out_down_left::SquareArrowOutDownLeft;
pub use square_arrow_out_down_right::SquareArrowOutDownRight;
pub use square_arrow_out_up_left::SquareArrowOutUpLeft;
pub use square_arrow_out_up_right::SquareArrowOutUpRight;
pub use square_arrow_right::SquareArrowRight;
pub use square_arrow_right_enter::SquareArrowRightEnter;
pub use square_arrow_right_exit::SquareArrowRightExit;
pub use square_arrow_up::SquareArrowUp;
pub use square_arrow_up_left::SquareArrowUpLeft;
pub use square_arrow_up_right::SquareArrowUpRight;
pub use square_asterisk::SquareAsterisk;
pub use square_bottom_dashed_scissors::SquareBottomDashedScissors;
pub use square_centerline_dashed_horizontal::SquareCenterlineDashedHorizontal;
pub use square_centerline_dashed_vertical::SquareCenterlineDashedVertical;
pub use square_chart_gantt::SquareChartGantt;
pub use square_check::SquareCheck;
pub use square_check_big::SquareCheckBig;
pub use square_chevron_down::SquareChevronDown;
pub use square_chevron_left::SquareChevronLeft;
pub use square_chevron_right::SquareChevronRight;
pub use square_chevron_up::SquareChevronUp;
pub use square_code::SquareCode;
pub use square_dashed::SquareDashed;
pub use square_dashed_bottom::SquareDashedBottom;
pub use square_dashed_bottom_code::SquareDashedBottomCode;
pub use square_dashed_kanban::SquareDashedKanban;
pub use square_dashed_mouse_pointer::SquareDashedMousePointer;
pub use square_dashed_text::SquareDashedText;
pub use square_dashed_top_solid::SquareDashedTopSolid;
pub use square_divide::SquareDivide;
pub use square_dot::SquareDot;
pub use square_equal::SquareEqual;
pub use square_function::SquareFunction;
pub use square_kanban::SquareKanban;
pub use square_library::SquareLibrary;
pub use square_m::SquareM;
pub use square_menu::SquareMenu;
pub use square_minus::SquareMinus;
pub use square_mouse_pointer::SquareMousePointer;
pub use square_parking::SquareParking;
pub use square_parking_off::SquareParkingOff;
pub use square_pause::SquarePause;
pub use square_pen::SquarePen;
pub use square_percent::SquarePercent;
pub use square_pi::SquarePi;
pub use square_pilcrow::SquarePilcrow;
pub use square_play::SquarePlay;
pub use square_plus::SquarePlus;
pub use square_power::SquarePower;
pub use square_radical::SquareRadical;
pub use square_round_corner::SquareRoundCorner;
pub use square_scissors::SquareScissors;
pub use square_sigma::SquareSigma;
pub use square_slash::SquareSlash;
pub use square_split_horizontal::SquareSplitHorizontal;
pub use square_split_vertical::SquareSplitVertical;
pub use square_square::SquareSquare;
pub use square_stack::SquareStack;
pub use square_star::SquareStar;
pub use square_stop::SquareStop;
pub use square_terminal::SquareTerminal;
pub use square_user::SquareUser;
pub use square_user_round::SquareUserRound;
pub use square_x::SquareX;
pub use squares_exclude::SquaresExclude;
pub use squares_intersect::SquaresIntersect;
pub use squares_subtract::SquaresSubtract;
pub use squares_unite::SquaresUnite;
pub use squircle::Squircle;
pub use squircle_dashed::SquircleDashed;
pub use squirrel::Squirrel;
pub use stamp::Stamp;
pub use star::Star;
pub use star_half::StarHalf;
pub use star_off::StarOff;
pub use step_back::StepBack;
pub use step_forward::StepForward;
pub use stethoscope::Stethoscope;
pub use sticker::Sticker;
pub use sticky_note::StickyNote;
pub use stone::Stone;
pub use store::Store;
pub use stretch_horizontal::StretchHorizontal;
pub use stretch_vertical::StretchVertical;
pub use strikethrough::Strikethrough;
pub use subscript::Subscript;
pub use sun::Sun;
pub use sun_dim::SunDim;
pub use sun_medium::SunMedium;
pub use sun_moon::SunMoon;
pub use sun_snow::SunSnow;
pub use sunrise::Sunrise;
pub use sunset::Sunset;
pub use superscript::Superscript;
pub use swatch_book::SwatchBook;
pub use swiss_franc::SwissFranc;
pub use switch_camera::SwitchCamera;
pub use sword::Sword;
pub use swords::Swords;
pub use syringe::Syringe;
pub use table::Table;
pub use table_2::Table2;
pub use table_cells_merge::TableCellsMerge;
pub use table_cells_split::TableCellsSplit;
pub use table_columns_split::TableColumnsSplit;
pub use table_of_contents::TableOfContents;
pub use table_properties::TableProperties;
pub use table_rows_split::TableRowsSplit;
pub use tablet::Tablet;
pub use tablet_smartphone::TabletSmartphone;
pub use tablets::Tablets;
pub use tag::Tag;
pub use tags::Tags;
pub use tally_1::Tally1;
pub use tally_2::Tally2;
pub use tally_3::Tally3;
pub use tally_4::Tally4;
pub use tally_5::Tally5;
pub use tangent::Tangent;
pub use target::Target;
pub use telescope::Telescope;
pub use tent::Tent;
pub use tent_tree::TentTree;
pub use terminal::Terminal;
pub use test_tube::TestTube;
pub use test_tube_diagonal::TestTubeDiagonal;
pub use test_tubes::TestTubes;
pub use text_align_center::TextAlignCenter;
pub use text_align_end::TextAlignEnd;
pub use text_align_justify::TextAlignJustify;
pub use text_align_start::TextAlignStart;
pub use text_cursor::TextCursor;
pub use text_cursor_input::TextCursorInput;
pub use text_initial::TextInitial;
pub use text_quote::TextQuote;
pub use text_search::TextSearch;
pub use text_wrap::TextWrap;
pub use theater::Theater;
pub use thermometer::Thermometer;
pub use thermometer_snowflake::ThermometerSnowflake;
pub use thermometer_sun::ThermometerSun;
pub use thumbs_down::ThumbsDown;
pub use thumbs_up::ThumbsUp;
pub use ticket::Ticket;
pub use ticket_check::TicketCheck;
pub use ticket_minus::TicketMinus;
pub use ticket_percent::TicketPercent;
pub use ticket_plus::TicketPlus;
pub use ticket_slash::TicketSlash;
pub use ticket_x::TicketX;
pub use tickets::Tickets;
pub use tickets_plane::TicketsPlane;
pub use timeline::Timeline;
pub use timer::Timer;
pub use timer_off::TimerOff;
pub use timer_reset::TimerReset;
pub use toggle_left::ToggleLeft;
pub use toggle_right::ToggleRight;
pub use toilet::Toilet;
pub use tool_case::ToolCase;
pub use toolbox::Toolbox;
pub use tornado::Tornado;
pub use torus::Torus;
pub use touchpad::Touchpad;
pub use touchpad_off::TouchpadOff;
pub use towel_rack::TowelRack;
pub use tower_control::TowerControl;
pub use toy_brick::ToyBrick;
pub use tractor::Tractor;
pub use traffic_cone::TrafficCone;
pub use train_front::TrainFront;
pub use train_front_tunnel::TrainFrontTunnel;
pub use train_track::TrainTrack;
pub use tram_front::TramFront;
pub use transgender::Transgender;
pub use trash::Trash;
pub use trash_2::Trash2;
pub use tree_deciduous::TreeDeciduous;
pub use tree_palm::TreePalm;
pub use tree_pine::TreePine;
pub use trees::Trees;
pub use trending_down::TrendingDown;
pub use trending_up::TrendingUp;
pub use trending_up_down::TrendingUpDown;
pub use triangle::Triangle;
pub use triangle_alert::TriangleAlert;
pub use triangle_dashed::TriangleDashed;
pub use triangle_right::TriangleRight;
pub use trophy::Trophy;
pub use truck::Truck;
pub use truck_electric::TruckElectric;
pub use turkish_lira::TurkishLira;
pub use turntable::Turntable;
pub use turtle::Turtle;
pub use tv::Tv;
pub use tv_minimal::TvMinimal;
pub use tv_minimal_play::TvMinimalPlay;
pub use r#type::Type;
pub use type_outline::TypeOutline;
pub use umbrella::Umbrella;
pub use umbrella_off::UmbrellaOff;
pub use underline::Underline;
pub use undo::Undo;
pub use undo_2::Undo2;
pub use undo_dot::UndoDot;
pub use unfold_horizontal::UnfoldHorizontal;
pub use unfold_vertical::UnfoldVertical;
pub use ungroup::Ungroup;
pub use university::University;
pub use unlink::Unlink;
pub use unlink_2::Unlink2;
pub use unplug::Unplug;
pub use upload::Upload;
pub use usb::Usb;
pub use user::User;
pub use user_check::UserCheck;
pub use user_cog::UserCog;
pub use user_key::UserKey;
pub use user_lock::UserLock;
pub use user_minus::UserMinus;
pub use user_pen::UserPen;
pub use user_plus::UserPlus;
pub use user_round::UserRound;
pub use user_round_check::UserRoundCheck;
pub use user_round_cog::UserRoundCog;
pub use user_round_key::UserRoundKey;
pub use user_round_minus::UserRoundMinus;
pub use user_round_pen::UserRoundPen;
pub use user_round_plus::UserRoundPlus;
pub use user_round_search::UserRoundSearch;
pub use user_round_x::UserRoundX;
pub use user_search::UserSearch;
pub use user_star::UserStar;
pub use user_x::UserX;
pub use users::Users;
pub use users_round::UsersRound;
pub use utensils::Utensils;
pub use utensils_crossed::UtensilsCrossed;
pub use utility_pole::UtilityPole;
pub use van::Van;
pub use variable::Variable;
pub use vault::Vault;
pub use vector_square::VectorSquare;
pub use vegan::Vegan;
pub use venetian_mask::VenetianMask;
pub use venus::Venus;
pub use venus_and_mars::VenusAndMars;
pub use vibrate::Vibrate;
pub use vibrate_off::VibrateOff;
pub use video::Video;
pub use video_off::VideoOff;
pub use videotape::Videotape;
pub use view::View;
pub use voicemail::Voicemail;
pub use volleyball::Volleyball;
pub use volume::Volume;
pub use volume_1::Volume1;
pub use volume_2::Volume2;
pub use volume_off::VolumeOff;
pub use volume_x::VolumeX;
pub use vote::Vote;
pub use wallet::Wallet;
pub use wallet_cards::WalletCards;
pub use wallet_minimal::WalletMinimal;
pub use wallpaper::Wallpaper;
pub use wand::Wand;
pub use wand_sparkles::WandSparkles;
pub use warehouse::Warehouse;
pub use washing_machine::WashingMachine;
pub use watch::Watch;
pub use waves_arrow_down::WavesArrowDown;
pub use waves_arrow_up::WavesArrowUp;
pub use waves_horizontal::WavesHorizontal;
pub use waves_ladder::WavesLadder;
pub use waves_vertical::WavesVertical;
pub use waypoints::Waypoints;
pub use webcam::Webcam;
pub use webhook::Webhook;
pub use webhook_off::WebhookOff;
pub use weight::Weight;
pub use weight_tilde::WeightTilde;
pub use wheat::Wheat;
pub use wheat_off::WheatOff;
pub use whole_word::WholeWord;
pub use wifi::Wifi;
pub use wifi_cog::WifiCog;
pub use wifi_high::WifiHigh;
pub use wifi_low::WifiLow;
pub use wifi_off::WifiOff;
pub use wifi_pen::WifiPen;
pub use wifi_sync::WifiSync;
pub use wifi_zero::WifiZero;
pub use wind::Wind;
pub use wind_arrow_down::WindArrowDown;
pub use wine::Wine;
pub use wine_off::WineOff;
pub use workflow::Workflow;
pub use worm::Worm;
pub use wrench::Wrench;
pub use x::X;
pub use x_line_top::XLineTop;
pub use zap::Zap;
pub use zap_off::ZapOff;
pub use zodiac_aquarius::ZodiacAquarius;
pub use zodiac_aries::ZodiacAries;
pub use zodiac_cancer::ZodiacCancer;
pub use zodiac_capricorn::ZodiacCapricorn;
pub use zodiac_gemini::ZodiacGemini;
pub use zodiac_leo::ZodiacLeo;
pub use zodiac_libra::ZodiacLibra;
pub use zodiac_ophiuchus::ZodiacOphiuchus;
pub use zodiac_pisces::ZodiacPisces;
pub use zodiac_sagittarius::ZodiacSagittarius;
pub use zodiac_scorpio::ZodiacScorpio;
pub use zodiac_taurus::ZodiacTaurus;
pub use zodiac_virgo::ZodiacVirgo;
pub use zoom_in::ZoomIn;
pub use zoom_out::ZoomOut;