icons 0.4.0

Icons for Rust fullstack applications — Leptos and Dioxus.
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
use leptos::prelude::*;

use crate::create_leptos_icons;

// * This file is auto-generated. Please DO NOT EDIT MANUALLY.

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