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
<style>
.dioxus-icons-static-picker {
  margin: 24px 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.dioxus-icons-static-picker p {
  color: var(--right-side-color, #888);
}
.dioxus-icons-static-picker h3 {
  margin: 22px 0 10px;
}
.dioxus-icons-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 4px;
}
.dioxus-icons-static-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 92px;
  padding: 8px 4px 10px;
  box-sizing: border-box;
  border-radius: 5px;
  color: inherit;
  text-align: center;
  text-decoration: none;
}
.dioxus-icons-static-cell:hover {
  color: var(--link-color, #3873ad);
  text-decoration: none;
}
.dioxus-icons-static-cell svg {
  width: 24px;
  height: 24px;
  flex: none;
}
.dioxus-icons-static-cell span {
  width: 100%;
  font-size: 11px;
  line-height: 1.3;
  color: var(--right-side-color, #888);
  overflow-wrap: anywhere;
}
.dioxus-icons-static-cell:hover span {
  color: var(--link-color, inherit);
}
@media (max-width: 640px) {
  .dioxus-icons-static-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
}
</style>
<section id="dioxus-icons-static-picker" class="dioxus-icons-static-picker">
<h2>Icon Index</h2>
<p>Browse by icon name, Lucide tags, or category.</p>
<h3>A</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.AArrowDown.html" title="AArrowDown letter font size text formatting smaller text design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 12 4 4 4-4"></path><path d="M18 16V7"></path><path d="m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"></path><path d="M3.304 13h6.392"></path></svg><span>AArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AArrowUp.html" title="AArrowUp letter font size text formatting larger bigger text design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 11 4-4 4 4"></path><path d="M18 16V7"></path><path d="m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"></path><path d="M3.304 13h6.392"></path></svg><span>AArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ALargeSmall.html" title="ALargeSmall letter font size text formatting text design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16"></path><path d="M15.697 14h5.606"></path><path d="m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"></path><path d="M3.304 13h6.392"></path></svg><span>ALargeSmall</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Accessibility.html" title="Accessibility disability disabled dda wheelchair accessibility medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="16" cy="4" r="1"></circle><path d="m18 19 1-7-6 1"></path><path d="m5 8 3-3 5.5 3-2.36 3.5"></path><path d="M4.24 14.5a5 5 0 0 0 6.88 6"></path><path d="M13.76 17.5a5 5 0 0 0-6.88-6"></path></svg><span>Accessibility</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Activity.html" title="Activity pulse action motion movement exercise fitness healthcare heart rate monitor vital signs vitals emergency room er intensive care hospital defibrillator earthquake siesmic magnitude richter scale aftershock tremor shockwave audio waveform synthesizer synthesiser music medical account social science multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"></path></svg><span>Activity</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AirVent.html" title="AirVent air conditioner ac central air cooling climate-control home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 17.5a2.5 2.5 0 1 1-4 2.03V12"></path><path d="M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><path d="M6 8h12"></path><path d="M6.6 15.572A2 2 0 1 0 10 17v-5"></path></svg><span>AirVent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Airplay.html" title="Airplay stream cast mirroring screen monitor macos osx multimedia connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><path d="m12 15 5 6H7Z"></path></svg><span>Airplay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlarmClockCheck.html" title="AlarmClockCheck done todo tick complete task devices notifications time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="13" r="8"></circle><path d="M5 3 2 6"></path><path d="m22 6-3-3"></path><path d="M6.38 18.7 4 21"></path><path d="M17.64 18.67 20 21"></path><path d="m9 13 2 2 4-4"></path></svg><span>AlarmClockCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlarmClockMinus.html" title="AlarmClockMinus remove devices notifications time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="13" r="8"></circle><path d="M5 3 2 6"></path><path d="m22 6-3-3"></path><path d="M6.38 18.7 4 21"></path><path d="M17.64 18.67 20 21"></path><path d="M9 13h6"></path></svg><span>AlarmClockMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlarmClockOff.html" title="AlarmClockOff morning turn-off devices notifications time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6.87 6.87a8 8 0 1 0 11.26 11.26"></path><path d="M19.9 14.25a8 8 0 0 0-9.15-9.15"></path><path d="m22 6-3-3"></path><path d="M6.26 18.67 4 21"></path><path d="m2 2 20 20"></path><path d="M4 4 2 6"></path></svg><span>AlarmClockOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlarmClockPlus.html" title="AlarmClockPlus add devices notifications time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="13" r="8"></circle><path d="M5 3 2 6"></path><path d="m22 6-3-3"></path><path d="M6.38 18.7 4 21"></path><path d="M17.64 18.67 20 21"></path><path d="M12 10v6"></path><path d="M9 13h6"></path></svg><span>AlarmClockPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlarmClock.html" title="AlarmClock morning devices notifications time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="13" r="8"></circle><path d="M12 9v4l2 2"></path><path d="M5 3 2 6"></path><path d="m22 6-3-3"></path><path d="M6.38 18.7 4 21"></path><path d="M17.64 18.67 20 21"></path></svg><span>AlarmClock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlarmSmoke.html" title="AlarmSmoke fire alert warning detector carbon monoxide safety equipment amenities home devices travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 21c0-2.5 2-2.5 2-5"></path><path d="M16 21c0-2.5 2-2.5 2-5"></path><path d="m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8"></path><path d="M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z"></path><path d="M6 21c0-2.5 2-2.5 2-5"></path></svg><span>AlarmSmoke</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Album.html" title="Album photo book photography multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><polyline points="11 3 11 11 14 8 17 11 17 3"></polyline></svg><span>Album</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignCenterHorizontal.html" title="AlignCenterHorizontal items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12h20"></path><path d="M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"></path><path d="M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"></path><path d="M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"></path><path d="M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"></path></svg><span>AlignCenterHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignCenterVertical.html" title="AlignCenterVertical items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v20"></path><path d="M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"></path><path d="M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"></path><path d="M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"></path><path d="M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"></path></svg><span>AlignCenterVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignEndHorizontal.html" title="AlignEndHorizontal items bottom flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="6" x="4" y="2"></rect><rect height="9" rx="2" width="6" x="14" y="9"></rect><path d="M22 22H2"></path></svg><span>AlignEndHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignEndVertical.html" title="AlignEndVertical items right flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="16" x="2" y="4"></rect><rect height="6" rx="2" width="9" x="9" y="14"></rect><path d="M22 22V2"></path></svg><span>AlignEndVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalDistributeCenter.html" title="AlignHorizontalDistributeCenter items flex justify space evenly around layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="4" y="5"></rect><rect height="10" rx="2" width="6" x="14" y="7"></rect><path d="M17 22v-5"></path><path d="M17 7V2"></path><path d="M7 22v-3"></path><path d="M7 5V2"></path></svg><span>AlignHorizontalDistributeCenter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalDistributeEnd.html" title="AlignHorizontalDistributeEnd right items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="4" y="5"></rect><rect height="10" rx="2" width="6" x="14" y="7"></rect><path d="M10 2v20"></path><path d="M20 2v20"></path></svg><span>AlignHorizontalDistributeEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalDistributeStart.html" title="AlignHorizontalDistributeStart left items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="4" y="5"></rect><rect height="10" rx="2" width="6" x="14" y="7"></rect><path d="M4 2v20"></path><path d="M14 2v20"></path></svg><span>AlignHorizontalDistributeStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalJustifyCenter.html" title="AlignHorizontalJustifyCenter center items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="2" y="5"></rect><rect height="10" rx="2" width="6" x="16" y="7"></rect><path d="M12 2v20"></path></svg><span>AlignHorizontalJustifyCenter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalJustifyEnd.html" title="AlignHorizontalJustifyEnd right items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="2" y="5"></rect><rect height="10" rx="2" width="6" x="12" y="7"></rect><path d="M22 2v20"></path></svg><span>AlignHorizontalJustifyEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalJustifyStart.html" title="AlignHorizontalJustifyStart left items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="6" y="5"></rect><rect height="10" rx="2" width="6" x="16" y="7"></rect><path d="M2 2v20"></path></svg><span>AlignHorizontalJustifyStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalSpaceAround.html" title="AlignHorizontalSpaceAround center items flex justify distribute between layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="10" rx="2" width="6" x="9" y="7"></rect><path d="M4 22V2"></path><path d="M20 22V2"></path></svg><span>AlignHorizontalSpaceAround</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignHorizontalSpaceBetween.html" title="AlignHorizontalSpaceBetween around items bottom flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="6" x="3" y="5"></rect><rect height="10" rx="2" width="6" x="15" y="7"></rect><path d="M3 2v20"></path><path d="M21 2v20"></path></svg><span>AlignHorizontalSpaceBetween</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignStartHorizontal.html" title="AlignStartHorizontal top items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="6" x="4" y="6"></rect><rect height="9" rx="2" width="6" x="14" y="6"></rect><path d="M22 2H2"></path></svg><span>AlignStartHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignStartVertical.html" title="AlignStartVertical left items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="9" x="6" y="14"></rect><rect height="6" rx="2" width="16" x="6" y="4"></rect><path d="M2 2v20"></path></svg><span>AlignStartVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalDistributeCenter.html" title="AlignVerticalDistributeCenter items flex justify space evenly around layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17h-3"></path><path d="M22 7h-5"></path><path d="M5 17H2"></path><path d="M7 7H2"></path><rect height="6" rx="2" width="14" x="5" y="14"></rect><rect height="6" rx="2" width="10" x="7" y="4"></rect></svg><span>AlignVerticalDistributeCenter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalDistributeEnd.html" title="AlignVerticalDistributeEnd bottom items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="14" x="5" y="14"></rect><rect height="6" rx="2" width="10" x="7" y="4"></rect><path d="M2 20h20"></path><path d="M2 10h20"></path></svg><span>AlignVerticalDistributeEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalDistributeStart.html" title="AlignVerticalDistributeStart top items flex justify layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="14" x="5" y="14"></rect><rect height="6" rx="2" width="10" x="7" y="4"></rect><path d="M2 14h20"></path><path d="M2 4h20"></path></svg><span>AlignVerticalDistributeStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalJustifyCenter.html" title="AlignVerticalJustifyCenter center items flex justify distribute between layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="14" x="5" y="16"></rect><rect height="6" rx="2" width="10" x="7" y="2"></rect><path d="M2 12h20"></path></svg><span>AlignVerticalJustifyCenter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalJustifyEnd.html" title="AlignVerticalJustifyEnd bottom items flex justify distribute between layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="14" x="5" y="12"></rect><rect height="6" rx="2" width="10" x="7" y="2"></rect><path d="M2 22h20"></path></svg><span>AlignVerticalJustifyEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalJustifyStart.html" title="AlignVerticalJustifyStart top items flex justify distribute between layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="14" x="5" y="16"></rect><rect height="6" rx="2" width="10" x="7" y="6"></rect><path d="M2 2h20"></path></svg><span>AlignVerticalJustifyStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalSpaceAround.html" title="AlignVerticalSpaceAround center items flex justify distribute between layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="10" x="7" y="9"></rect><path d="M22 20H2"></path><path d="M22 4H2"></path></svg><span>AlignVerticalSpaceAround</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AlignVerticalSpaceBetween.html" title="AlignVerticalSpaceBetween center items flex justify distribute between layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="14" x="5" y="15"></rect><rect height="6" rx="2" width="10" x="7" y="3"></rect><path d="M2 21h20"></path><path d="M2 3h20"></path></svg><span>AlignVerticalSpaceBetween</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ambulance.html" title="Ambulance ambulance emergency medical vehicle siren healthcare transportation rescue urgent first aid medical transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10H6"></path><path d="M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"></path><path d="M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"></path><path d="M8 8v4"></path><path d="M9 18h6"></path><circle cx="17" cy="18" r="2"></circle><circle cx="7" cy="18" r="2"></circle></svg><span>Ambulance</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ampersand.html" title="Ampersand and typography operator join concatenate code &amp; text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 12h3"></path><path d="M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13"></path></svg><span>Ampersand</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ampersands.html" title="Ampersands and operator then code &amp;&amp; text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"></path><path d="M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"></path></svg><span>Ampersands</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Amphora.html" title="Amphora pottery artifact artefact vase ceramics clay archaeology museum wine oil food-beverage gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8"></path><path d="M10 5H8a2 2 0 0 0 0 4h.68"></path><path d="M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8"></path><path d="M14 5h2a2 2 0 0 1 0 4h-.68"></path><path d="M18 22H6"></path><path d="M9 2h6"></path></svg><span>Amphora</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Anchor.html" title="Anchor ship transportation text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v16"></path><path d="m19 13 2-1a9 9 0 0 1-18 0l2 1"></path><path d="M9 11h6"></path><circle cx="12" cy="4" r="2"></circle></svg><span>Anchor</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Angry.html" title="Angry emoji anger face emotion emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M16 16s-1.5-2-4-2-4 2-4 2"></path><path d="M7.5 8 10 9"></path><path d="m14 9 2.5-1"></path><path d="M9 10h.01"></path><path d="M15 10h.01"></path></svg><span>Angry</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Annoyed.html" title="Annoyed emoji nuisance face emotion emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 15h8"></path><path d="M8 9h2"></path><path d="M14 9h2"></path></svg><span>Annoyed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Antenna.html" title="Antenna signal connection connectivity tv television broadcast live frequency tune scan channels aerial receiver transmission transducer terrestrial satellite cable devices multimedia communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12 7 2"></path><path d="m7 12 5-10"></path><path d="m12 12 5-10"></path><path d="m17 12 5-10"></path><path d="M4.5 7h15"></path><path d="M12 16v6"></path></svg><span>Antenna</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Anvil.html" title="Anvil metal iron alloy materials heavy weight blacksmith forge acme buildings tools gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4"></path><path d="M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z"></path><path d="M9 12v5"></path><path d="M15 12v5"></path><path d="M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1"></path></svg><span>Anvil</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Aperture.html" title="Aperture camera photo pictures shutter exposure photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m14.31 8 5.74 9.94"></path><path d="M9.69 8h11.48"></path><path d="m7.38 12 5.74-9.94"></path><path d="M9.69 16 3.95 6.06"></path><path d="M14.31 16H2.83"></path><path d="m16.62 12-5.74 9.94"></path></svg><span>Aperture</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AppWindowMac.html" title="AppWindowMac application menu bar pane preferences macos osx executable layout design development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M6 8h.01"></path><path d="M10 8h.01"></path><path d="M14 8h.01"></path></svg><span>AppWindowMac</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AppWindow.html" title="AppWindow application menu bar pane executable layout design development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M10 4v4"></path><path d="M2 8h20"></path><path d="M6 4v4"></path></svg><span>AppWindow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Apple.html" title="Apple fruit food healthy snack nutrition fresh produce grocery organic harvest vitamin red green juicy sweet tart bite orchard plant core raw diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6.528V3a1 1 0 0 1 1-1h0"></path><path d="M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21"></path></svg><span>Apple</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArchiveRestore.html" title="ArchiveRestore unarchive index backup box storage records files mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="5" rx="1" width="20" x="2" y="3"></rect><path d="M4 8v11a2 2 0 0 0 2 2h2"></path><path d="M20 8v11a2 2 0 0 1-2 2h-2"></path><path d="m9 15 3-3 3 3"></path><path d="M12 12v9"></path></svg><span>ArchiveRestore</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArchiveX.html" title="ArchiveX index backup box storage records junk files mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="5" rx="1" width="20" x="2" y="3"></rect><path d="M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"></path><path d="m9.5 17 5-5"></path><path d="m9.5 12 5 5"></path></svg><span>ArchiveX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Archive.html" title="Archive index backup box storage records files mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="5" rx="1" width="20" x="2" y="3"></rect><path d="M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"></path><path d="M10 12h4"></path></svg><span>Archive</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Armchair.html" title="Armchair sofa furniture leisure lounge loveseat couch home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"></path><path d="M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"></path><path d="M5 18v2"></path><path d="M19 18v2"></path></svg><span>Armchair</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigDownDash.html" title="ArrowBigDownDash backwards reverse slow direction south download arrows gaming files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h3.293a.707.707 0 0 1 .5 1.207l-6.939 6.939a1.207 1.207 0 0 1-1.708 0l-6.94-6.94a.707.707 0 0 1 .5-1.206H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1z"></path><path d="M9 4h6"></path></svg><span>ArrowBigDownDash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigDown.html" title="ArrowBigDown backwards reverse direction south arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 0 1 1h3.293a.707.707 0 0 1 .5 1.207l-7.086 7.086a1 1 0 0 1-1.414 0l-7.086-7.086a.707.707 0 0 1 .5-1.207H8a1 1 0 0 0 1-1z"></path></svg><span>ArrowBigDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigLeftDash.html" title="ArrowBigLeftDash previous back direction west turn corner arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 9a1 1 0 0 1-1-1V4.707a.707.707 0 0 0-1.207-.5l-6.94 6.94a1.207 1.207 0 0 0 0 1.707l6.94 6.94a.707.707 0 0 0 1.207-.5V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"></path><path d="M20 9v6"></path></svg><span>ArrowBigLeftDash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigLeft.html" title="ArrowBigLeft previous back direction west indicate turn arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.793 19.793a.707.707 0 0 0 1.207-.5V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-6a1 1 0 0 1-1-1V4.707a.707.707 0 0 0-1.207-.5l-6.94 6.94a1.207 1.207 0 0 0 0 1.707z"></path></svg><span>ArrowBigLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigRightDash.html" title="ArrowBigRightDash next forward direction east turn corner arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 9a1 1 0 0 0 1-1V4.707a.707.707 0 0 1 1.207-.5l6.94 6.94a1.207 1.207 0 0 1 0 1.707l-6.94 6.94a.707.707 0 0 1-1.207-.5V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"></path><path d="M4 9v6"></path></svg><span>ArrowBigRightDash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigRight.html" title="ArrowBigRight next forward direction east indicate turn arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.207 19.793a.707.707 0 0 1-1.207-.5V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1V4.707a.707.707 0 0 1 1.207-.5l6.94 6.94a1.207 1.207 0 0 1 0 1.707z"></path></svg><span>ArrowBigRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigUpDash.html" title="ArrowBigUpDash caps lock capitals keyboard button mac forward direction north faster speed boost arrows text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 16a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1h3.293a.707.707 0 0 0 .5-1.207l-6.939-6.939a1.207 1.207 0 0 0-1.708 0l-6.94 6.94a.707.707 0 0 0 .5 1.206H8a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1z"></path><path d="M9 20h6"></path></svg><span>ArrowBigUpDash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowBigUp.html" title="ArrowBigUp shift keyboard button mac capitalize capitalise forward direction north arrows text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 19a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-6a1 1 0 0 1 1-1h3.293a.707.707 0 0 0 .5-1.207l-7.086-7.086a1 1 0 0 0-1.414 0l-7.086 7.086a.707.707 0 0 0 .5 1.207H8a1 1 0 0 1 1 1z"></path></svg><span>ArrowBigUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDown01.html" title="ArrowDown01 filter sort ascending descending increasing decreasing rising falling numerical text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 20V4"></path><rect height="6" ry="2" width="4" x="15" y="4"></rect><path d="M17 20v-6h-2"></path><path d="M15 20h4"></path></svg><span>ArrowDown01</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDown10.html" title="ArrowDown10 filter sort ascending descending increasing decreasing rising falling numerical text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 20V4"></path><path d="M17 10V4h-2"></path><path d="M15 10h4"></path><rect height="6" ry="2" width="4" x="15" y="14"></rect></svg><span>ArrowDown10</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownAZ.html" title="ArrowDownAZ filter sort ascending descending increasing decreasing rising falling alphabetical text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 20V4"></path><path d="M20 8h-5"></path><path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10"></path><path d="M15 14h5l-5 6h5"></path></svg><span>ArrowDownAZ</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownFromLine.html" title="ArrowDownFromLine backwards reverse direction south download expand fold vertical arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 3H5"></path><path d="M12 21V7"></path><path d="m6 15 6 6 6-6"></path></svg><span>ArrowDownFromLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownLeft.html" title="ArrowDownLeft direction south-west diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 7 7 17"></path><path d="M17 17H7V7"></path></svg><span>ArrowDownLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownNarrowWide.html" title="ArrowDownNarrowWide filter sort ascending descending increasing decreasing rising falling text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 20V4"></path><path d="M11 4h4"></path><path d="M11 8h7"></path><path d="M11 12h10"></path></svg><span>ArrowDownNarrowWide</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownRight.html" title="ArrowDownRight direction south-east diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 7 10 10"></path><path d="M17 7v10H7"></path></svg><span>ArrowDownRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownToDot.html" title="ArrowDownToDot direction south waypoint location step into arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v14"></path><path d="m19 9-7 7-7-7"></path><circle cx="12" cy="21" r="1"></circle></svg><span>ArrowDownToDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownToLine.html" title="ArrowDownToLine behind direction south download save git version control pull collapse fold vertical arrows files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17V3"></path><path d="m6 11 6 6 6-6"></path><path d="M19 21H5"></path></svg><span>ArrowDownToLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownUp.html" title="ArrowDownUp bidirectional two-way 2-way swap switch network traffic flow mobile data internet sort reorder move arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 20V4"></path><path d="m21 8-4-4-4 4"></path><path d="M17 4v16"></path></svg><span>ArrowDownUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownWideNarrow.html" title="ArrowDownWideNarrow filter sort ascending descending increasing decreasing rising falling text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 20V4"></path><path d="M11 4h10"></path><path d="M11 8h7"></path><path d="M11 12h4"></path></svg><span>ArrowDownWideNarrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDownZA.html" title="ArrowDownZA filter sort ascending descending increasing decreasing rising falling alphabetical reverse text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 16 4 4 4-4"></path><path d="M7 4v16"></path><path d="M15 4h5l-5 6h5"></path><path d="M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"></path><path d="M20 18h-5"></path></svg><span>ArrowDownZA</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowDown.html" title="ArrowDown backwards reverse direction south arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14"></path><path d="m19 12-7 7-7-7"></path></svg><span>ArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowLeftFromLine.html" title="ArrowLeftFromLine previous back direction west expand fold horizontal &lt;-| arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 6-6 6 6 6"></path><path d="M3 12h14"></path><path d="M21 19V5"></path></svg><span>ArrowLeftFromLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowLeftRight.html" title="ArrowLeftRight bidirectional two-way 2-way swap switch transaction reorder move &lt;- -&gt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3 4 7l4 4"></path><path d="M4 7h16"></path><path d="m16 21 4-4-4-4"></path><path d="M20 17H4"></path></svg><span>ArrowLeftRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowLeftToLine.html" title="ArrowLeftToLine previous back direction west collapse fold horizontal |&lt;- arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 19V5"></path><path d="m13 6-6 6 6 6"></path><path d="M7 12h14"></path></svg><span>ArrowLeftToLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowLeft.html" title="ArrowLeft previous back direction west &lt;- arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg><span>ArrowLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowRightFromLine.html" title="ArrowRightFromLine next forward direction east export expand fold horizontal |-&gt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5v14"></path><path d="M21 12H7"></path><path d="m15 18 6-6-6-6"></path></svg><span>ArrowRightFromLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowRightLeft.html" title="ArrowRightLeft bidirectional two-way 2-way swap switch transaction reorder move &lt;- -&gt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 3 4 4-4 4"></path><path d="M20 7H4"></path><path d="m8 21-4-4 4-4"></path><path d="M4 17h16"></path></svg><span>ArrowRightLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowRightToLine.html" title="ArrowRightToLine next forward direction east tab keyboard mac indent collapse fold horizontal -&gt;| arrows development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 12H3"></path><path d="m11 18 6-6-6-6"></path><path d="M21 5v14"></path></svg><span>ArrowRightToLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowRight.html" title="ArrowRight forward next direction east -&gt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg><span>ArrowRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUp01.html" title="ArrowUp01 filter sort ascending descending increasing decreasing rising falling numerical text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path><rect height="6" ry="2" width="4" x="15" y="4"></rect><path d="M17 20v-6h-2"></path><path d="M15 20h4"></path></svg><span>ArrowUp01</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUp10.html" title="ArrowUp10 filter sort ascending descending increasing decreasing rising falling numerical text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path><path d="M17 10V4h-2"></path><path d="M15 10h4"></path><rect height="6" ry="2" width="4" x="15" y="14"></rect></svg><span>ArrowUp10</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpAZ.html" title="ArrowUpAZ filter sort ascending descending increasing decreasing rising falling alphabetical text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path><path d="M20 8h-5"></path><path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10"></path><path d="M15 14h5l-5 6h5"></path></svg><span>ArrowUpAZ</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpDown.html" title="ArrowUpDown bidirectional two-way 2-way swap switch network mobile data internet sort reorder move arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 16-4 4-4-4"></path><path d="M17 20V4"></path><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path></svg><span>ArrowUpDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpFromDot.html" title="ArrowUpFromDot direction north step out arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m5 9 7-7 7 7"></path><path d="M12 16V2"></path><circle cx="12" cy="21" r="1"></circle></svg><span>ArrowUpFromDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpFromLine.html" title="ArrowUpFromLine forward direction north upload git version control push expand fold vertical arrows files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 9-6-6-6 6"></path><path d="M12 3v14"></path><path d="M5 21h14"></path></svg><span>ArrowUpFromLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpLeft.html" title="ArrowUpLeft direction north-west diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 17V7h10"></path><path d="M17 17 7 7"></path></svg><span>ArrowUpLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpNarrowWide.html" title="ArrowUpNarrowWide filter sort ascending descending increasing decreasing rising falling text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path><path d="M11 12h4"></path><path d="M11 16h7"></path><path d="M11 20h10"></path></svg><span>ArrowUpNarrowWide</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpRight.html" title="ArrowUpRight direction north-east diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 7h10v10"></path><path d="M7 17 17 7"></path></svg><span>ArrowUpRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpToLine.html" title="ArrowUpToLine forward direction north upload collapse fold vertical arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 3h14"></path><path d="m18 13-6-6-6 6"></path><path d="M12 7v14"></path></svg><span>ArrowUpToLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpWideNarrow.html" title="ArrowUpWideNarrow filter sort ascending descending increasing decreasing rising falling text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path><path d="M11 12h10"></path><path d="M11 16h7"></path><path d="M11 20h4"></path></svg><span>ArrowUpWideNarrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUpZA.html" title="ArrowUpZA filter sort ascending descending increasing decreasing rising falling alphabetical reverse text layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 4-4 4 4"></path><path d="M7 4v16"></path><path d="M15 4h5l-5 6h5"></path><path d="M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"></path><path d="M20 18h-5"></path></svg><span>ArrowUpZA</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowUp.html" title="ArrowUp forward direction north arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m5 12 7-7 7 7"></path><path d="M12 19V5"></path></svg><span>ArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ArrowsUpFromLine.html" title="ArrowsUpFromLine direction orientation this way up vertical package box fragile postage shipping arrows transportation mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m4 6 3-3 3 3"></path><path d="M7 17V3"></path><path d="m14 6 3-3 3 3"></path><path d="M17 17V3"></path><path d="M4 21h16"></path></svg><span>ArrowsUpFromLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Asterisk.html" title="Asterisk reference times multiply multiplication operator code glob pattern wildcard * text math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v12"></path><path d="M17.196 9 6.804 15"></path><path d="m6.804 9 10.392 6"></path></svg><span>Asterisk</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Astroid.html" title="Astroid star math shape curve sharp four-pointed hypocycloid ai artificial intelligence shapes math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.983 21.186a1 1 0 0 1-1.966 0 10 10 0 0 0-8.203-8.203 1 1 0 0 1 0-1.966 10 10 0 0 0 8.203-8.203 1 1 0 0 1 1.966 0 10 10 0 0 0 8.203 8.203 1 1 0 0 1 0 1.966 10 10 0 0 0-8.203 8.203"></path></svg><span>Astroid</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AtSign.html" title="AtSign mention at email message @ text account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"></circle><path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"></path></svg><span>AtSign</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Atom.html" title="Atom atomic nuclear physics particle element molecule electricity energy chemistry science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="1"></circle><path d="M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"></path><path d="M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"></path></svg><span>Atom</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AudioLines.html" title="AudioLines graphic equaliser sound noise listen hearing hertz frequency wavelength vibrate sine synthesizer synthesiser levels track music playback radio broadcast airwaves voice vocals singer song multimedia communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 10v3"></path><path d="M6 6v11"></path><path d="M10 3v18"></path><path d="M14 8v7"></path><path d="M18 5v13"></path><path d="M22 10v3"></path></svg><span>AudioLines</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.AudioWaveform.html" title="AudioWaveform sound noise listen hearing hertz frequency wavelength vibrate sine synthesizer synthesiser levels track music playback radio broadcast airwaves voice vocals singer song multimedia communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2"></path></svg><span>AudioWaveform</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Award.html" title="Award achievement badge rosette prize winner account sports gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"></path><circle cx="12" cy="8" r="6"></circle></svg><span>Award</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Axe.html" title="Axe hatchet weapon chop sharp equipment fireman firefighter brigade lumberjack woodcutter logger forestry tools gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"></path><path d="M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"></path></svg><span>Axe</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Axis3d.html" title="Axis3d gizmo coordinates design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.5 10.5 15 9"></path><path d="M4 4v15a1 1 0 0 0 1 1h15"></path><path d="M4.293 19.707 6 18"></path><path d="m9 15 1.5-1.5"></path></svg><span>Axis3d</span></a>
</div>
<h3>B</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Baby.html" title="Baby child childproof children accessibility people"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"></path><path d="M15 12h.01"></path><path d="M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"></path><path d="M9 12h.01"></path></svg><span>Baby</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Backpack.html" title="Backpack bag hiking travel camping school childhood gaming photography travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"></path><path d="M8 10h8"></path><path d="M8 18h8"></path><path d="M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6"></path><path d="M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"></path></svg><span>Backpack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeAlert.html" title="BadgeAlert check verified unverified security safety issue account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><line x1="12" x2="12" y1="8" y2="12"></line><line x1="12" x2="12.01" y1="16" y2="16"></line></svg><span>BadgeAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeCent.html" title="BadgeCent discount offer sale voucher tag monetization marketing finance financial exchange transaction payment cents dollar usd $ ¢ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M12 7v10"></path><path d="M15.4 10a4 4 0 1 0 0 4"></path></svg><span>BadgeCent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeCheck.html" title="BadgeCheck verified check social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 12 2 2 4-4"></path></svg><span>BadgeCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeDollarSign.html" title="BadgeDollarSign discount offer sale voucher tag monetization marketing finance financial exchange transaction payment usd $ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"></path><path d="M12 18V6"></path></svg><span>BadgeDollarSign</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeEuro.html" title="BadgeEuro discount offer sale voucher tag monetization marketing finance financial exchange transaction payment € shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M7 12h5"></path><path d="M15 9.4a4 4 0 1 0 0 5.2"></path></svg><span>BadgeEuro</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeIndianRupee.html" title="BadgeIndianRupee discount offer sale voucher tag monetization marketing finance financial exchange transaction payment inr ₹ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M8 8h8"></path><path d="M8 12h8"></path><path d="m13 17-5-1h1a4 4 0 0 0 0-8"></path></svg><span>BadgeIndianRupee</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeInfo.html" title="BadgeInfo verified unverified help account accessibility social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><line x1="12" x2="12" y1="16" y2="12"></line><line x1="12" x2="12.01" y1="8" y2="8"></line></svg><span>BadgeInfo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeJapaneseYen.html" title="BadgeJapaneseYen discount offer sale voucher tag monetization marketing finance financial exchange transaction payment jpy ¥ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 8 3 3v7"></path><path d="m12 11 3-3"></path><path d="M9 12h6"></path><path d="M9 16h6"></path></svg><span>BadgeJapaneseYen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeMinus.html" title="BadgeMinus verified unverified delete remove erase social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><line x1="8" x2="16" y1="12" y2="12"></line></svg><span>BadgeMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgePercent.html" title="BadgePercent verified unverified sale discount offer marketing sticker price tag social finance shopping math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m15 9-6 6"></path><path d="M9 9h.01"></path><path d="M15 15h.01"></path></svg><span>BadgePercent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgePlus.html" title="BadgePlus verified unverified add create new social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><line x1="12" x2="12" y1="8" y2="16"></line><line x1="8" x2="16" y1="12" y2="12"></line></svg><span>BadgePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgePoundSterling.html" title="BadgePoundSterling discount offer sale voucher tag monetization marketing finance financial exchange transaction payment british gbp £ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M8 12h4"></path><path d="M10 16V9.5a2.5 2.5 0 0 1 5 0"></path><path d="M8 16h7"></path></svg><span>BadgePoundSterling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeQuestionMark.html" title="BadgeQuestionMark verified unverified help accessibility social shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" x2="12.01" y1="17" y2="17"></line></svg><span>BadgeQuestionMark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeRussianRuble.html" title="BadgeRussianRuble discount offer sale voucher tag monetization marketing finance financial exchange transaction payment rub ₽ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M9 16h5"></path><path d="M9 12h5a2 2 0 1 0 0-4h-3v9"></path></svg><span>BadgeRussianRuble</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeSwissFranc.html" title="BadgeSwissFranc discount offer sale voucher tag monetization marketing finance financial exchange transaction payment chf ₣ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="M11 17V8h4"></path><path d="M11 12h3"></path><path d="M9 16h4"></path></svg><span>BadgeSwissFranc</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeTurkishLira.html" title="BadgeTurkishLira discount offer sale voucher tag monetization marketing finance financial exchange transaction payment try ₺ shopping finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 7v10a5 5 0 0 0 5-5"></path><path d="m15 8-6 3"></path><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"></path></svg><span>BadgeTurkishLira</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BadgeX.html" title="BadgeX verified unverified lost delete remove social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><line x1="15" x2="9" y1="9" y2="15"></line><line x1="9" x2="15" y1="9" y2="15"></line></svg><span>BadgeX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Badge.html" title="Badge check verified unverified account social shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path></svg><span>Badge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BaggageClaim.html" title="BaggageClaim baggage luggage travel cart trolley suitcase transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"></path><path d="M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"></path><rect height="8" rx="1" width="13" x="8" y="6"></rect><circle cx="18" cy="20" r="2"></circle><circle cx="9" cy="20" r="2"></circle></svg><span>BaggageClaim</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Balloon.html" title="Balloon party festival congratulations celebration decoration colorful floating fun birthday event entertainment emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 16v1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1"></path><path d="M12 6a2 2 0 0 1 2 2"></path><path d="M18 8c0 4-3.5 8-6 8s-6-4-6-8a6 6 0 0 1 12 0"></path></svg><span>Balloon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ban.html" title="Ban cancel no stop forbidden prohibited error incorrect mistake wrong failure circle slash null void account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M4.929 4.929 19.07 19.071"></path></svg><span>Ban</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Banana.html" title="Banana fruit food food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"></path><path d="M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"></path></svg><span>Banana</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bandage.html" title="Bandage plaster band-aid first aid medical health wound injury care treatment healing protection emergency aid safety patch medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10.01h.01"></path><path d="M10 14.01h.01"></path><path d="M14 10.01h.01"></path><path d="M14 14.01h.01"></path><path d="M18 6v12"></path><path d="M6 6v12"></path><rect height="12" rx="2" width="20" x="2" y="6"></rect></svg><span>Bandage</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BanknoteArrowDown.html" title="BanknoteArrowDown bill currency money payment funds transaction cash finance withdraw expense out payout refund debit spending decrease finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"></path><path d="m16 19 3 3 3-3"></path><path d="M18 12h.01"></path><path d="M19 16v6"></path><path d="M6 12h.01"></path><circle cx="12" cy="12" r="2"></circle></svg><span>BanknoteArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BanknoteArrowUp.html" title="BanknoteArrowUp bill currency money payment funds transaction cash finance deposit earnings income in credit prepaid growth increase finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"></path><path d="M18 12h.01"></path><path d="M19 22v-6"></path><path d="m22 19-3-3-3 3"></path><path d="M6 12h.01"></path><circle cx="12" cy="12" r="2"></circle></svg><span>BanknoteArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BanknoteX.html" title="BanknoteX bill currency money payment funds transaction cash finance error failed rejected canceled declined lost delete remove finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"></path><path d="m17 17 5 5"></path><path d="M18 12h.01"></path><path d="m22 17-5 5"></path><path d="M6 12h.01"></path><circle cx="12" cy="12" r="2"></circle></svg><span>BanknoteX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Banknote.html" title="Banknote currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="2" width="20" x="2" y="6"></rect><circle cx="12" cy="12" r="2"></circle><path d="M6 12h.01M18 12h.01"></path></svg><span>Banknote</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Barcode.html" title="Barcode scan checkout till cart transaction purchase buy product packaging retail consumer shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5v14"></path><path d="M8 5v14"></path><path d="M12 5v14"></path><path d="M17 5v14"></path><path d="M21 5v14"></path></svg><span>Barcode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Barrel.html" title="Barrel keg drum tank wine beer oak wood firkin hogshead kilderkin barrique solera aging whiskey brewery distillery winery vineyard food-beverage navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 3a41 41 0 0 0 0 18"></path><path d="M14 3a41 41 0 0 1 0 18"></path><path d="M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z"></path><path d="M3.84 17h16.32"></path><path d="M3.84 7h16.32"></path></svg><span>Barrel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Baseline.html" title="Baseline text format color text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20h16"></path><path d="m6 16 6-12 6 12"></path><path d="M8 12h8"></path></svg><span>Baseline</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bath.html" title="Bath amenities services bathroom shower travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 4 8 6"></path><path d="M17 19v2"></path><path d="M2 12h20"></path><path d="M7 19v2"></path><path d="M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"></path></svg><span>Bath</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BatteryCharging.html" title="BatteryCharging power electricity energy accumulator charge connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 7-3 5h4l-3 5"></path><path d="M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935"></path><path d="M22 14v-4"></path><path d="M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936"></path></svg><span>BatteryCharging</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BatteryFull.html" title="BatteryFull power electricity energy accumulator charge connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10v4"></path><path d="M14 10v4"></path><path d="M22 14v-4"></path><path d="M6 10v4"></path><rect height="12" rx="2" width="16" x="2" y="6"></rect></svg><span>BatteryFull</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BatteryLow.html" title="BatteryLow power electricity energy accumulator charge connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 14v-4"></path><path d="M6 14v-4"></path><rect height="12" rx="2" width="16" x="2" y="6"></rect></svg><span>BatteryLow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BatteryMedium.html" title="BatteryMedium power electricity energy accumulator charge connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 14v-4"></path><path d="M22 14v-4"></path><path d="M6 14v-4"></path><rect height="12" rx="2" width="16" x="2" y="6"></rect></svg><span>BatteryMedium</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BatteryPlus.html" title="BatteryPlus power electricity energy accumulator charge plus economy health add new maximum upgrade extra + devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 9v6"></path><path d="M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605"></path><path d="M22 14v-4"></path><path d="M7 12h6"></path><path d="M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606"></path></svg><span>BatteryPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BatteryWarning.html" title="BatteryWarning power electricity energy accumulator charge exclamation mark connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 17h.01"></path><path d="M10 7v6"></path><path d="M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2"></path><path d="M22 14v-4"></path><path d="M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"></path></svg><span>BatteryWarning</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Battery.html" title="Battery power electricity energy accumulator charge connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M 22 14 L 22 10"></path><rect height="12" rx="2" width="16" x="2" y="6"></rect></svg><span>Battery</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Beaker.html" title="Beaker cup lab chemistry experiment test science gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4.5 3h15"></path><path d="M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"></path><path d="M6 14h12"></path></svg><span>Beaker</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BeanOff.html" title="BeanOff soy free legume soy food seed allergy intolerance diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"></path><path d="M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"></path><path d="M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>BeanOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bean.html" title="Bean legume soy food seed food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"></path><path d="M5.341 10.62a4 4 0 1 0 5.279-5.28"></path></svg><span>Bean</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BedDouble.html" title="BedDouble sleep hotel furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"></path><path d="M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"></path><path d="M12 4v6"></path><path d="M2 18h20"></path></svg><span>BedDouble</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BedSingle.html" title="BedSingle sleep hotel furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"></path><path d="M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"></path><path d="M3 18h18"></path></svg><span>BedSingle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bed.html" title="Bed sleep hotel furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 4v16"></path><path d="M2 8h18a2 2 0 0 1 2 2v10"></path><path d="M2 17h20"></path><path d="M6 8v9"></path></svg><span>Bed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BeefOff.html" title="BeefOff food dish restaurant course meal meat bbq steak vegetarian food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.771 6.109a2.5 2.5 0 0 1 3.12 3.12"></path><path d="M17.852 12.185a6.5 6.5 0 0 0-9.035-9.04"></path><path d="M18.013 18.013C15.029 20.349 10.831 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"></path><path d="m18.5 6 2.19 4.5a6.48 6.48 0 0 1-.139 4.393"></path><path d="m2 2 20 20"></path><path d="M6.355 6.37a7 7 0 0 0-.075.23c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c3.356 0 6.993-1.267 9.85-3.151"></path></svg><span>BeefOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Beef.html" title="Beef food dish restaurant course meal meat bbq steak food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"></path><path d="m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"></path><circle cx="12.5" cy="8.5" r="2.5"></circle></svg><span>Beef</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BeerOff.html" title="BeerOff alcohol bar beverage brewery drink food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 13v5"></path><path d="M17 11.47V8"></path><path d="M17 11h1a3 3 0 0 1 2.745 4.211"></path><path d="m2 2 20 20"></path><path d="M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3"></path><path d="M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268"></path><path d="M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12"></path><path d="M9 14.6V18"></path></svg><span>BeerOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Beer.html" title="Beer alcohol bar beverage brewery drink food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 11h1a3 3 0 0 1 0 6h-1"></path><path d="M9 12v6"></path><path d="M13 12v6"></path><path d="M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"></path><path d="M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"></path></svg><span>Beer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellCheck.html" title="BellCheck alarm notification sound reminder account notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="m15 8 2 2 4-4"></path><path d="M16.8607 4.4824A6 6 0 0 0 6 8C6 12.499 4.589 13.956 3.262 15.326"></path><path d="M3.262 15.326A1 1 0 0 0 4 17H20A1 1 0 0 0 20.74 15.327C20.209 14.779 19.665 14.218 19.203 13.454"></path></svg><span>BellCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellDot.html" title="BellDot alarm notification sound reminder unread account notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="M11.68 2.009A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673c-.824-.85-1.678-1.731-2.21-3.348"></path><circle cx="18" cy="5" r="3"></circle></svg><span>BellDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellElectric.html" title="BellElectric fire alarm flames smoke firefighter fireman department brigade station emergency alert safety school bell period break recess doorbell entrance entry ring reception devices notifications home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.518 17.347A7 7 0 0 1 14 19"></path><path d="M18.8 4A11 11 0 0 1 20 9"></path><path d="M9 9h.01"></path><circle cx="20" cy="16" r="2"></circle><circle cx="9" cy="9" r="7"></circle><rect height="6" rx="2" width="10" x="4" y="16"></rect></svg><span>BellElectric</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellMinus.html" title="BellMinus alarm notification silent reminder delete remove erase notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="M15 8h6"></path><path d="M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12"></path></svg><span>BellMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellOff.html" title="BellOff alarm notification silent reminder notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742"></path><path d="m2 2 20 20"></path><path d="M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"></path></svg><span>BellOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellPlus.html" title="BellPlus notification silent reminder add create new notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="M15 8h6"></path><path d="M18 5v6"></path><path d="M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332"></path></svg><span>BellPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BellRing.html" title="BellRing alarm notification sound reminder notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="M22 8c0-2.3-.8-4.3-2-6"></path><path d="M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"></path><path d="M4 2C2.8 3.7 2 5.7 2 8"></path></svg><span>BellRing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bell.html" title="Bell alarm notification sound reminder account notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.268 21a2 2 0 0 0 3.464 0"></path><path d="M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"></path></svg><span>Bell</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BetweenHorizontalEnd.html" title="BetweenHorizontalEnd insert add left slot squeeze space vertical grid table rows cells excel spreadsheet accountancy data enter entry entries blocks rectangles chevron layout design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="7" rx="1" width="13" x="3" y="3"></rect><path d="m22 15-3-3 3-3"></path><rect height="7" rx="1" width="13" x="3" y="14"></rect></svg><span>BetweenHorizontalEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BetweenHorizontalStart.html" title="BetweenHorizontalStart insert add right slot squeeze space vertical grid table rows cells excel spreadsheet accountancy data enter entry entries blocks rectangles chevron layout design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="7" rx="1" width="13" x="8" y="3"></rect><path d="m2 9 3 3-3 3"></path><rect height="7" rx="1" width="13" x="8" y="14"></rect></svg><span>BetweenHorizontalStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BetweenVerticalEnd.html" title="BetweenVerticalEnd insert add top slot squeeze space vertical grid table columns cells data enter entry entries blocks rectangles chevron layout design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="13" rx="1" width="7" x="3" y="3"></rect><path d="m9 22 3-3 3 3"></path><rect height="13" rx="1" width="7" x="14" y="3"></rect></svg><span>BetweenVerticalEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BetweenVerticalStart.html" title="BetweenVerticalStart insert add bottom slot squeeze space vertical grid table columns cells data enter entry entries blocks rectangles chevron layout design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="13" rx="1" width="7" x="3" y="8"></rect><path d="m15 2-3 3-3-3"></path><rect height="13" rx="1" width="7" x="14" y="8"></rect></svg><span>BetweenVerticalStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BicepsFlexed.html" title="BicepsFlexed arm muscle strong working out athletic toned muscular forelimb curled emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1"></path><path d="M15 14a5 5 0 0 0-7.584 2"></path><path d="M9.964 6.825C8.019 7.977 9.5 13 8 15"></path></svg><span>BicepsFlexed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bike.html" title="Bike bicycle transport trip transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18.5" cy="17.5" r="3.5"></circle><circle cx="5.5" cy="17.5" r="3.5"></circle><circle cx="15" cy="5" r="1"></circle><path d="M12 17.5V14l-3-3 4-3 2 3h2"></path></svg><span>Bike</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Binary.html" title="Binary code digits computer zero one boolean text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="4" x="14" y="14"></rect><rect height="6" rx="2" width="4" x="6" y="4"></rect><path d="M6 20h4"></path><path d="M14 10h4"></path><path d="M6 14h2v6"></path><path d="M14 4h2v6"></path></svg><span>Binary</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Binoculars.html" title="Binoculars field glasses lorgnette pince-nez observation sightseeing nature wildlife birdwatching scouting surveillance search discovery monitoring lookout viewpoint travel tourism research navigation nature photography science travel development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10h4"></path><path d="M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"></path><path d="M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"></path><path d="M 22 16 L 2 16"></path><path d="M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"></path><path d="M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"></path></svg><span>Binoculars</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Biohazard.html" title="Biohazard fallout waste biology chemistry chemical element science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="11.9" r="2"></circle><path d="M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6"></path><path d="m8.9 10.1 1.4.8"></path><path d="M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5"></path><path d="m15.1 10.1-1.4.8"></path><path d="M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2"></path><path d="M12 13.9v1.6"></path><path d="M13.5 5.4c-1-.2-2-.2-3 0"></path><path d="M17 16.4c.7-.7 1.2-1.6 1.5-2.5"></path><path d="M5.5 13.9c.3.9.8 1.8 1.5 2.5"></path></svg><span>Biohazard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bird.html" title="Bird peace freedom wing avian tweet animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 7h.01"></path><path d="M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"></path><path d="m20 7 2 .5-2 .5"></path><path d="M10 18v3"></path><path d="M14 17.75V21"></path><path d="M7 18a6 6 0 0 0 3.84-10.61"></path></svg><span>Bird</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Birdhouse.html" title="Birdhouse birdhouse bird garden home house woodwork nature animals navigation home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18v4"></path><path d="m17 18 1.956-11.468"></path><path d="m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"></path><path d="M4 18h16"></path><path d="M7 18 5.044 6.532"></path><circle cx="12" cy="10" r="2"></circle></svg><span>Birdhouse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bitcoin.html" title="Bitcoin cryptocurrency digital blockchain finance coin market decentralized investment crypto currency money payment development finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"></path></svg><span>Bitcoin</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Blend.html" title="Blend mode overlay multiply screen opacity transparency alpha filters lenses mixed shades tints hues saturation brightness overlap colors colours design photography tools development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="9" r="7"></circle><circle cx="15" cy="15" r="7"></circle></svg><span>Blend</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Blinds.html" title="Blinds shades screen curtain shutter roller blind window lighting household home home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h18"></path><path d="M20 7H8"></path><path d="M20 11H8"></path><path d="M10 19h10"></path><path d="M8 15h12"></path><path d="M4 3v14"></path><circle cx="4" cy="19" r="2"></circle></svg><span>Blinds</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Blocks.html" title="Blocks addon plugin integration extension package build stack toys kids children learning squares corner development layout shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2"></path><rect height="8" rx="1" width="8" x="14" y="2"></rect></svg><span>Blocks</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BluetoothConnected.html" title="BluetoothConnected paired connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 7 10 10-5 5V2l5 5L7 17"></path><line x1="18" x2="21" y1="12" y2="12"></line><line x1="3" x2="6" y1="12" y2="12"></line></svg><span>BluetoothConnected</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BluetoothOff.html" title="BluetoothOff lost connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 17-5 5V12l-5 5"></path><path d="m2 2 20 20"></path><path d="M14.5 9.5 17 7l-5-5v4.5"></path></svg><span>BluetoothOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BluetoothSearching.html" title="BluetoothSearching pairing connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 7 10 10-5 5V2l5 5L7 17"></path><path d="M20.83 14.83a4 4 0 0 0 0-5.66"></path><path d="M18 12h.01"></path></svg><span>BluetoothSearching</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bluetooth.html" title="Bluetooth wireless connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 7 10 10-5 5V2l5 5L7 17"></path></svg><span>Bluetooth</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bold.html" title="Bold text strong format text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"></path></svg><span>Bold</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bolt.html" title="Bolt nut screw settings preferences configuration controls edit diy fixed build construction parts tools home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><circle cx="12" cy="12" r="4"></circle></svg><span>Bolt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bomb.html" title="Bomb fatal error crash blockbuster mine explosion explode explosive security tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="13" r="9"></circle><path d="M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95"></path><path d="m22 2-1.5 1.5"></path></svg><span>Bomb</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bone.html" title="Bone health skeleton skull death pets dog animals medical gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"></path></svg><span>Bone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookA.html" title="BookA dictionary define definition thesaurus encyclopedia encyclopaedia reading booklet magazine leaflet pamphlet tome library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research language translate alphabetical a-z ordered text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="m8 13 4-7 4 7"></path><path d="M9.1 11h5.7"></path></svg><span>BookA</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookAlert.html" title="BookAlert reading paperback booklet magazine leaflet pamphlet tome library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research documentation warning alert danger exclamation mark text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13h.01"></path><path d="M12 6v3"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path></svg><span>BookAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookAudio.html" title="BookAudio audiobook reading listening sound story fiction novel information knowledge education student study learning research multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v7"></path><path d="M16 8v3"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M8 8v3"></path></svg><span>BookAudio</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookCheck.html" title="BookCheck read booklet magazine leaflet pamphlet library written authored published informed knowledgeable educated schooled homework examined tested marked passed graduated studied learned lesson researched documented revealed blank plain language true truth verified corrected task todo done completed finished ticked text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="m9 9.5 2 2 4-4"></path></svg><span>BookCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookCopy.html" title="BookCopy code coding version control git repository clone fork duplicate multiple books library copies copied plagiarism plagiarised plagiarized reading list information informed knowledge knowledgeable knowledgable education high school university college academy student study learning research smart intelligent intellectual development text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 7a2 2 0 0 0-2 2v11"></path><path d="M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21"></path><path d="M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10"></path></svg><span>BookCopy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookDashed.html" title="BookDashed code coding version control git repository template draft script screenplay writing writer author unwritten unpublished untold development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17h1.5"></path><path d="M12 22h1.5"></path><path d="M12 2h1.5"></path><path d="M17.5 22H19a1 1 0 0 0 1-1"></path><path d="M17.5 2H19a1 1 0 0 1 1 1v1.5"></path><path d="M20 14v3h-2.5"></path><path d="M20 8.5V10"></path><path d="M4 10V8.5"></path><path d="M4 19.5V14"></path><path d="M4 4.5A2.5 2.5 0 0 1 6.5 2H8"></path><path d="M8 22H6.5a1 1 0 0 1 0-5H8"></path></svg><span>BookDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookDown.html" title="BookDown code coding version control git repository pull development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13V7"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="m9 10 3 3 3-3"></path></svg><span>BookDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookHeadphones.html" title="BookHeadphones audiobook reading listening sound story fiction novel information knowledge education student study learning research multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M8 12v-2a4 4 0 0 1 8 0v2"></path><circle cx="15" cy="12" r="1"></circle><circle cx="9" cy="12" r="1"></circle></svg><span>BookHeadphones</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookHeart.html" title="BookHeart diary romance novel journal entry entries personal private secret crush like love emotion feminine girls teens teenager therapy theraputic therapist planner organizer organiser notes notepad stationery sketchbook writing written reading favorite favourite high school social text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"></path></svg><span>BookHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookImage.html" title="BookImage images pictures photos album collection event magazine catalog catalogue brochure browse gallery photography text multimedia files social shopping travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><circle cx="10" cy="8" r="2"></circle></svg><span>BookImage</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookKey.html" title="BookKey code coding version control git repository private public secret unlocked hidden revealed knowledge learning development security gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2H6.5A2.5 2.5 0 0 0 4 4.5v15"></path><path d="M17 2v6"></path><path d="M17 4h2"></path><path d="M20 15.2V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><circle cx="17" cy="10" r="2"></circle></svg><span>BookKey</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookLock.html" title="BookLock code coding version control git repository private secret hidden knowledge development security gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 6V4a2 2 0 1 0-4 0v2"></path><path d="M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10"></path><rect height="5" rx="1" width="8" x="12" y="6"></rect></svg><span>BookLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookMarked.html" title="BookMarked dictionary reading booklet magazine leaflet pamphlet tome library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research documentation saved later future reference index code coding version control git repository text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v8l3-3 3 3V2"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path></svg><span>BookMarked</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookMinus.html" title="BookMinus code coding version control git repository remove delete censor cancel forbid prohibit ban uneducated re-educate unlearn downgrade development text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M9 10h6"></path></svg><span>BookMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookOpenCheck.html" title="BookOpenCheck read pages booklet magazine leaflet pamphlet library written authored published informed knowledgeable educated schooled homework examined tested marked passed graduated studied learned lesson researched documented revealed blank plain language true truth verified corrected task todo done completed finished ticked text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 21V7"></path><path d="m16 12 2 2 4-4"></path><path d="M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3"></path></svg><span>BookOpenCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookOpenText.html" title="BookOpenText reading pages booklet magazine leaflet pamphlet library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research documentation revealed text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v14"></path><path d="M16 12h2"></path><path d="M16 8h2"></path><path d="M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"></path><path d="M6 12h2"></path><path d="M6 8h2"></path></svg><span>BookOpenText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookOpen.html" title="BookOpen reading pages booklet magazine leaflet pamphlet library writing written writer author story script screenplay fiction novel information knowledge education high school university college academy student study learning homework research documentation revealed blank plain text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v14"></path><path d="M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"></path></svg><span>BookOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookPlus.html" title="BookPlus code coding version control git repository remove delete read write author publish inform graduate re-educate study learn research knowledge improve upgrade level up development text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v6"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M9 10h6"></path></svg><span>BookPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookSearch.html" title="BookSearch reading library study education research knowledge discover browsing lookup finding scanning text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 22H5.5a1 1 0 0 1 0-5h4.501"></path><path d="m21 22-1.879-1.878"></path><path d="M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8"></path><circle cx="17" cy="18" r="3"></circle></svg><span>BookSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookText.html" title="BookText reading booklet magazine leaflet pamphlet tome library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research documentation text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M8 11h8"></path><path d="M8 7h6"></path></svg><span>BookText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookType.html" title="BookType thesaurus synonym reading booklet magazine leaflet pamphlet tome library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research language translate typography fonts collection text design gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13h4"></path><path d="M12 6v7"></path><path d="M16 8V6H8v2"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path></svg><span>BookType</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookUp2.html" title="BookUp2 code coding version control git repository push force development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13V7"></path><path d="M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2"></path><path d="m9 10 3-3 3 3"></path><path d="m9 5 3-3 3 3"></path></svg><span>BookUp2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookUp.html" title="BookUp code coding version control git repository push development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13V7"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="m9 10 3-3 3 3"></path></svg><span>BookUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookUser.html" title="BookUser person people family friends acquaintances contacts details addresses phone numbers directory listing networking account connectivity communication social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 13a3 3 0 1 0-6 0"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><circle cx="12" cy="8" r="2"></circle></svg><span>BookUser</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookX.html" title="BookX code coding version control git repository remove delete reading misinformation disinformation misinformed charlatan sophistry false lies untruth propaganda censored cancelled forbidden prohibited banned uneducated re-education unlearn text gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.5 7-5 5"></path><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path><path d="m9.5 7 5 5"></path></svg><span>BookX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Book.html" title="Book reading paperback booklet magazine leaflet pamphlet tome library writing written writer author story script fiction novel information knowledge education high school university college academy student study learning homework research documentation text development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"></path></svg><span>Book</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookmarkCheck.html" title="BookmarkCheck read finished complete clip marker tag task todo account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"></path><path d="m9 10 2 2 4-4"></path></svg><span>BookmarkCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookmarkMinus.html" title="BookmarkMinus delete remove account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 10H9"></path><path d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"></path></svg><span>BookmarkMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookmarkOff.html" title="BookmarkOff unsaved unfavorite unmarked unlabel disabled removed unpin unread unclip marker untag account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 19v1a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5"></path><path d="m2 2 20 20"></path><path d="M8.656 3H17a2 2 0 0 1 2 2v8.344"></path></svg><span>BookmarkOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookmarkPlus.html" title="BookmarkPlus add account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v6"></path><path d="M15 10H9"></path><path d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"></path></svg><span>BookmarkPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BookmarkX.html" title="BookmarkX read clip marker tag cancel close delete remove clear account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.5 7.5-5 5"></path><path d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"></path><path d="m9.5 7.5 5 5"></path></svg><span>BookmarkX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bookmark.html" title="Bookmark save favorite mark label attachment file stick pin read clip marker tag account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"></path></svg><span>Bookmark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BoomBox.html" title="BoomBox radio speakers audio music sound broadcast live frequency devices multimedia social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"></path><path d="M8 8v1"></path><path d="M12 8v1"></path><path d="M16 8v1"></path><rect height="12" rx="2" width="20" x="2" y="9"></rect><circle cx="8" cy="15" r="2"></circle><circle cx="16" cy="15" r="2"></circle></svg><span>BoomBox</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BotMessageSquare.html" title="BotMessageSquare robot ai chat assistant development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6V2H8"></path><path d="M15 11v2"></path><path d="M2 12h2"></path><path d="M20 12h2"></path><path d="M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"></path><path d="M9 11v2"></path></svg><span>BotMessageSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BotOff.html" title="BotOff robot ai chat assistant development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.67 8H18a2 2 0 0 1 2 2v4.33"></path><path d="M2 14h2"></path><path d="M20 14h2"></path><path d="M22 22 2 2"></path><path d="M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"></path><path d="M9 13v2"></path><path d="M9.67 4H12v2.33"></path></svg><span>BotOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bot.html" title="Bot robot ai chat assistant development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 8V4H8"></path><rect height="12" rx="2" width="16" x="4" y="8"></rect><path d="M2 14h2"></path><path d="M20 14h2"></path><path d="M15 13v2"></path><path d="M9 13v2"></path></svg><span>Bot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BottleWine.html" title="BottleWine alcohol drink glass goblet chalice vineyard winery red white rose dry sparkling bar party nightclub nightlife sommelier restaurant dinner meal food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z"></path><path d="M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4"></path></svg><span>BottleWine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BowArrow.html" title="BowArrow archer archery game war weapon gaming tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 3h4v4"></path><path d="M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17"></path><path d="M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05"></path><path d="M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z"></path><path d="M9.707 14.293 21 3"></path></svg><span>BowArrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Box.html" title="Box cube package container storage geometry 3d isometric shapes gaming development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"></path><path d="m3.3 7 8.7 5 8.7-5"></path><path d="M12 22V12"></path></svg><span>Box</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Boxes.html" title="Boxes cubes packages parts group units collection cluster geometry shapes gaming development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"></path><path d="m7 16.5-4.74-2.85"></path><path d="m7 16.5 5-3"></path><path d="M7 16.5v5.17"></path><path d="M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"></path><path d="m17 16.5-5-3"></path><path d="m17 16.5 4.74-2.85"></path><path d="M17 16.5v5.17"></path><path d="M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"></path><path d="M12 8 7.26 5.15"></path><path d="m12 8 4.74-2.85"></path><path d="M12 13.5V8"></path></svg><span>Boxes</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Braces.html" title="Braces json code token curly brackets data { } development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"></path><path d="M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"></path></svg><span>Braces</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Brackets.html" title="Brackets code token array list square [ ] development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"></path><path d="M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"></path></svg><span>Brackets</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BrainCircuit.html" title="BrainCircuit mind intellect artificial intelligence ai deep learning machine learning computing science development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z"></path><path d="M9 13a4.5 4.5 0 0 0 3-4"></path><path d="M6.003 5.125A3 3 0 0 0 6.401 6.5"></path><path d="M3.477 10.896a4 4 0 0 1 .585-.396"></path><path d="M6 18a4 4 0 0 1-1.967-.516"></path><path d="M12 13h4"></path><path d="M12 18h6a2 2 0 0 1 2 2v1"></path><path d="M12 8h8"></path><path d="M16 8V5a2 2 0 0 1 2-2"></path><circle cx="16" cy="13" r=".5"></circle><circle cx="18" cy="3" r=".5"></circle><circle cx="20" cy="21" r=".5"></circle><circle cx="20" cy="8" r=".5"></circle></svg><span>BrainCircuit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BrainCog.html" title="BrainCog mind intellect artificial intelligence ai deep learning machine learning computing science development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.852 14.772-.383.923"></path><path d="m10.852 9.228-.383-.923"></path><path d="m13.148 14.772.382.924"></path><path d="m13.531 8.305-.383.923"></path><path d="m14.772 10.852.923-.383"></path><path d="m14.772 13.148.923.383"></path><path d="M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771"></path><path d="M17.998 5.125a4 4 0 0 1 2.525 5.771"></path><path d="M19.505 10.294a4 4 0 0 1-1.5 7.706"></path><path d="M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516"></path><path d="M4.5 10.291A4 4 0 0 0 6 18"></path><path d="M6.002 5.125a3 3 0 0 0 .4 1.375"></path><path d="m9.228 10.852-.923-.383"></path><path d="m9.228 13.148-.923.383"></path><circle cx="12" cy="12" r="3"></circle></svg><span>BrainCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Brain.html" title="Brain medical mind mental intellect cerebral consciousness genius artificial intelligence ai think thought insight intelligent smart medical science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18V5"></path><path d="M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4"></path><path d="M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5"></path><path d="M17.997 5.125a4 4 0 0 1 2.526 5.77"></path><path d="M18 18a4 4 0 0 0 2-7.464"></path><path d="M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517"></path><path d="M6 18a4 4 0 0 1-2-7.464"></path><path d="M6.003 5.125a4 4 0 0 0-2.526 5.77"></path></svg><span>Brain</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BrickWallFire.html" title="BrickWallFire firewall security bricks mortar cement materials construction builder labourer quantity surveyor blocks stone campfire camping wilderness outdoors lit warmth wood twigs sticks security home connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3v2.107"></path><path d="M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9"></path><path d="M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938"></path><path d="M3 15h5.253"></path><path d="M3 9h8.228"></path><path d="M8 15v6"></path><path d="M8 3v6"></path></svg><span>BrickWallFire</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BrickWallShield.html" title="BrickWallShield firewall security bricks mortar cement materials construction builder labourer quantity surveyor blocks stone cybersecurity secure safety protection guardian armored armoured defense defence defender block threat prevention antivirus vigilance vigilant detection scan find strength strong tough invincible invincibility invulnerable undamaged audit admin verification crest bravery knight foot soldier infantry trooper pawn battle war military army cadet scout security home connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 9v1.258"></path><path d="M16 3v5.46"></path><path d="M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75"></path><path d="M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z"></path><path d="M3 15h7"></path><path d="M3 9h12.142"></path><path d="M8 15v6"></path><path d="M8 3v6"></path></svg><span>BrickWallShield</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BrickWall.html" title="BrickWall bricks mortar cement materials construction builder labourer quantity surveyor blocks stone buildings home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M12 9v6"></path><path d="M16 15v6"></path><path d="M16 3v6"></path><path d="M3 15h18"></path><path d="M3 9h18"></path><path d="M8 15v6"></path><path d="M8 3v6"></path></svg><span>BrickWall</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BriefcaseBusiness.html" title="BriefcaseBusiness work bag baggage folder portfolio transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12h.01"></path><path d="M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"></path><path d="M22 13a18.15 18.15 0 0 1-20 0"></path><rect height="14" rx="2" width="20" x="2" y="6"></rect></svg><span>BriefcaseBusiness</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BriefcaseConveyorBelt.html" title="BriefcaseConveyorBelt baggage luggage travel suitcase conveyor carousel travel transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 20v2"></path><path d="M14 20v2"></path><path d="M18 20v2"></path><path d="M21 20H3"></path><path d="M6 20v2"></path><path d="M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12"></path><rect height="10" rx="2" width="16" x="4" y="6"></rect></svg><span>BriefcaseConveyorBelt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BriefcaseMedical.html" title="BriefcaseMedical doctor medicine first aid medical transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 11v4"></path><path d="M14 13h-4"></path><path d="M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"></path><path d="M18 6v14"></path><path d="M6 6v14"></path><rect height="14" rx="2" width="20" x="2" y="6"></rect></svg><span>BriefcaseMedical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Briefcase.html" title="Briefcase work bag baggage folder transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path><rect height="14" rx="2" width="20" x="2" y="6"></rect></svg><span>Briefcase</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BringToFront.html" title="BringToFront bring send move over forward front overlap layer order design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="2" width="8" x="8" y="8"></rect><path d="M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2"></path><path d="M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2"></path></svg><span>BringToFront</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BrushCleaning.html" title="BrushCleaning cleaning utensil housekeeping tool sweeping scrubbing hygiene maintenance household cleaner chores equipment sanitation bristles handle home care sanitize purify wash disinfect sterilize scrub polish decontaminate wipe spotless remove empty erase purge eliminate home tools design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 22-1-4"></path><path d="M19 14a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v1a1 1 0 0 0 1 1"></path><path d="M19 14H5l-1.973 6.767A1 1 0 0 0 4 22h16a1 1 0 0 0 .973-1.233z"></path><path d="m8 22 1-4"></path></svg><span>BrushCleaning</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Brush.html" title="Brush clean sweep refactor remove draw paint color artist text design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 10 3 3"></path><path d="M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"></path><path d="M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"></path></svg><span>Brush</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bubbles.html" title="Bubbles water cleaning soap bath hygiene freshness wash foam cleanliness shampoo purity splash lightness airy relaxation spa bubbly fluid floating drop weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7.001 15.085A1.5 1.5 0 0 1 9 16.5"></path><circle cx="18.5" cy="8.5" r="3.5"></circle><circle cx="7.5" cy="16.5" r="5.5"></circle><circle cx="7.5" cy="4.5" r="2.5"></circle></svg><span>Bubbles</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BugOff.html" title="BugOff issue fixed resolved testing debug code insect kill exterminate pest control development animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20v-8"></path><path d="M12.656 7H14a4 4 0 0 1 4 4v1.344"></path><path d="M14.12 3.88 16 2"></path><path d="M17.123 17.123A6 6 0 0 1 6 14v-3a4 4 0 0 1 1.72-3.287"></path><path d="m2 2 20 20"></path><path d="M21 5a4 4 0 0 1-3.55 3.97"></path><path d="M22 13h-3.344"></path><path d="M3 21a4 4 0 0 1 3.81-4"></path><path d="M3 5a4 4 0 0 0 3.55 3.97"></path><path d="M6 13H2"></path><path d="m8 2 1.88 1.88"></path><path d="M9.712 4.06A3 3 0 0 1 15 6v1.13"></path></svg><span>BugOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BugPlay.html" title="BugPlay issue testing debug reproduce code insect development animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97"></path><path d="M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"></path><path d="M14.12 3.88 16 2"></path><path d="M21 5a4 4 0 0 1-3.55 3.97"></path><path d="M3 21a4 4 0 0 1 3.81-4"></path><path d="M3 5a4 4 0 0 0 3.55 3.97"></path><path d="M6 13H2"></path><path d="m8 2 1.88 1.88"></path><path d="M9 7.13V6a3 3 0 1 1 6 0v1.13"></path></svg><span>BugPlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bug.html" title="Bug issue error defect testing troubleshoot problem report debug code insect beetle development animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20v-9"></path><path d="M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z"></path><path d="M14.12 3.88 16 2"></path><path d="M21 21a4 4 0 0 0-3.81-4"></path><path d="M21 5a4 4 0 0 1-3.55 3.97"></path><path d="M22 13h-4"></path><path d="M3 21a4 4 0 0 1 3.81-4"></path><path d="M3 5a4 4 0 0 0 3.55 3.97"></path><path d="M6 13H2"></path><path d="m8 2 1.88 1.88"></path><path d="M9 7.13V6a3 3 0 1 1 6 0v1.13"></path></svg><span>Bug</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Building2.html" title="Building2 business company enterprise skyscraper organisation organization city account buildings"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12h4"></path><path d="M10 8h4"></path><path d="M14 21v-3a2 2 0 0 0-4 0v3"></path><path d="M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2"></path><path d="M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16"></path></svg><span>Building2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Building.html" title="Building organisation organization account buildings"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10h.01"></path><path d="M12 14h.01"></path><path d="M12 6h.01"></path><path d="M16 10h.01"></path><path d="M16 14h.01"></path><path d="M16 6h.01"></path><path d="M8 10h.01"></path><path d="M8 14h.01"></path><path d="M8 6h.01"></path><path d="M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"></path><rect height="20" rx="2" width="16" x="4" y="2"></rect></svg><span>Building</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.BusFront.html" title="BusFront coach vehicle trip road transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 6 2 7"></path><path d="M10 6h4"></path><path d="m22 7-2-1"></path><rect height="16" rx="2" width="16" x="4" y="3"></rect><path d="M4 11h16"></path><path d="M8 15h.01"></path><path d="M16 15h.01"></path><path d="M6 19v2"></path><path d="M18 21v-2"></path></svg><span>BusFront</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Bus.html" title="Bus bus vehicle transport trip transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 6v6"></path><path d="M15 6v6"></path><path d="M2 12h19.6"></path><path d="M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"></path><circle cx="7" cy="18" r="2"></circle><path d="M9 18h5"></path><circle cx="16" cy="18" r="2"></circle></svg><span>Bus</span></a>
</div>
<h3>C</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.CableCar.html" title="CableCar ski lift winter holiday alpine resort mountains transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 3h.01"></path><path d="M14 2h.01"></path><path d="m2 9 20-5"></path><path d="M12 12V6.5"></path><rect height="10" rx="3" width="16" x="4" y="12"></rect><path d="M9 12v5"></path><path d="M15 12v5"></path><path d="M4 17h16"></path></svg><span>CableCar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cable.html" title="Cable cord wire connector connection link signal console computer equipment electricity energy electronics recharging charger power supply disconnected unplugged plugs interface input output audio video av rca scart tv television optical connectivity devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z"></path><path d="M17 21v-2"></path><path d="M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10"></path><path d="M21 21v-2"></path><path d="M3 5V3"></path><path d="M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z"></path><path d="M7 5V3"></path></svg><span>Cable</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CakeSlice.html" title="CakeSlice birthday birthdate celebration party surprise gateaux dessert candles wish fondant icing sugar sweet baking food-beverage social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 13H3"></path><path d="M16 17H3"></path><path d="m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6"></path><circle cx="9" cy="7" r="2"></circle></svg><span>CakeSlice</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cake.html" title="Cake birthday birthdate celebration party surprise gateaux dessert fondant icing sugar sweet baking food-beverage social account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"></path><path d="M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"></path><path d="M2 21h20"></path><path d="M7 8v3"></path><path d="M12 8v3"></path><path d="M17 8v3"></path><path d="M7 4h.01"></path><path d="M12 4h.01"></path><path d="M17 4h.01"></path></svg><span>Cake</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Calculator.html" title="Calculator count calculating machine math devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" width="16" x="4" y="2"></rect><line x1="8" x2="16" y1="6" y2="6"></line><line x1="16" x2="16" y1="14" y2="18"></line><path d="M16 10h.01"></path><path d="M12 10h.01"></path><path d="M8 10h.01"></path><path d="M12 14h.01"></path><path d="M8 14h.01"></path><path d="M12 18h.01"></path><path d="M8 18h.01"></path></svg><span>Calculator</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Calendar1.html" title="Calendar1 date month year event single singular once 1 first time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 14h1v4"></path><path d="M16 2v4"></path><path d="M3 10h18"></path><path d="M8 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect></svg><span>Calendar1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarArrowDown.html" title="CalendarArrowDown date month year event sort order ascending descending increasing decreasing rising falling time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 18 4 4 4-4"></path><path d="M16 2v4"></path><path d="M18 14v8"></path><path d="M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343"></path><path d="M3 10h18"></path><path d="M8 2v4"></path></svg><span>CalendarArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarArrowUp.html" title="CalendarArrowUp date month year event sort order ascending descending increasing decreasing rising falling time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 18 4-4 4 4"></path><path d="M16 2v4"></path><path d="M18 22v-8"></path><path d="M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9"></path><path d="M3 10h18"></path><path d="M8 2v4"></path></svg><span>CalendarArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarCheck2.html" title="CalendarCheck2 date day month year event confirm subscribe schedule done todo tick complete task time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><path d="M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"></path><path d="M3 10h18"></path><path d="m16 20 2 2 4-4"></path></svg><span>CalendarCheck2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarCheck.html" title="CalendarCheck date day month year event confirm subscribe schedule done todo tick complete task time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M3 10h18"></path><path d="m9 16 2 2 4-4"></path></svg><span>CalendarCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarClock.html" title="CalendarClock date day month year event clock hour time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 14v2.2l1.6 1"></path><path d="M16 2v4"></path><path d="M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"></path><path d="M3 10h5"></path><path d="M8 2v4"></path><circle cx="16" cy="16" r="6"></circle></svg><span>CalendarClock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarCog.html" title="CalendarCog date day month year events settings gear cog time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.228 16.852-.923-.383"></path><path d="m15.228 19.148-.923.383"></path><path d="M16 2v4"></path><path d="m16.47 14.305.382.923"></path><path d="m16.852 20.772-.383.924"></path><path d="m19.148 15.228.383-.923"></path><path d="m19.53 21.696-.382-.924"></path><path d="m20.772 16.852.924-.383"></path><path d="m20.772 19.148.924.383"></path><path d="M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"></path><path d="M3 10h18"></path><path d="M8 2v4"></path><circle cx="18" cy="18" r="3"></circle></svg><span>CalendarCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarDays.html" title="CalendarDays date month year event time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M3 10h18"></path><path d="M8 14h.01"></path><path d="M12 14h.01"></path><path d="M16 14h.01"></path><path d="M8 18h.01"></path><path d="M12 18h.01"></path><path d="M16 18h.01"></path></svg><span>CalendarDays</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarFold.html" title="CalendarFold date month year event birthday birthdate ics time files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 20a2 2 0 0 0 2 2h10a2.4 2.4 0 0 0 1.706-.706l3.588-3.588A2.4 2.4 0 0 0 21 16V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"></path><path d="M15 22v-5a1 1 0 0 1 1-1h5"></path><path d="M8 2v4"></path><path d="M16 2v4"></path><path d="M3 10h18"></path></svg><span>CalendarFold</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarHeart.html" title="CalendarHeart date month year event heart favourite subscribe valentines day time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125"></path><path d="M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"></path><path d="M16 2v4"></path><path d="M3 10h18"></path><path d="M8 2v4"></path></svg><span>CalendarHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarMinus2.html" title="CalendarMinus2 date day month year event delete remove time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M3 10h18"></path><path d="M10 16h4"></path></svg><span>CalendarMinus2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarMinus.html" title="CalendarMinus date day month year event delete remove time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 19h6"></path><path d="M16 2v4"></path><path d="M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"></path><path d="M3 10h18"></path><path d="M8 2v4"></path></svg><span>CalendarMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarOff.html" title="CalendarOff date day month year event delete remove time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"></path><path d="M21 15.5V6a2 2 0 0 0-2-2H9.5"></path><path d="M16 2v4"></path><path d="M3 10h7"></path><path d="M21 10h-5.5"></path><path d="m2 2 20 20"></path></svg><span>CalendarOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarPlus2.html" title="CalendarPlus2 date day month year event add subscribe create new time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M3 10h18"></path><path d="M10 16h4"></path><path d="M12 14v4"></path></svg><span>CalendarPlus2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarPlus.html" title="CalendarPlus date day month year event add subscribe create new time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 19h6"></path><path d="M16 2v4"></path><path d="M19 16v6"></path><path d="M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"></path><path d="M3 10h18"></path><path d="M8 2v4"></path></svg><span>CalendarPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarRange.html" title="CalendarRange date day month year event range period time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M16 2v4"></path><path d="M3 10h18"></path><path d="M8 2v4"></path><path d="M17 14h-6"></path><path d="M13 18H7"></path><path d="M7 14h.01"></path><path d="M17 18h.01"></path></svg><span>CalendarRange</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarSearch.html" title="CalendarSearch date day month year events search lens time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 2v4"></path><path d="M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25"></path><path d="m22 22-1.875-1.875"></path><path d="M3 10h18"></path><path d="M8 2v4"></path><circle cx="18" cy="18" r="3"></circle></svg><span>CalendarSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarSync.html" title="CalendarSync repeat refresh reconnect transfer backup date month year event subscribe recurring schedule reminder automatic auto arrows time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 10v4h4"></path><path d="m11 14 1.535-1.605a5 5 0 0 1 8 1.5"></path><path d="M16 2v4"></path><path d="m21 18-1.535 1.605a5 5 0 0 1-8-1.5"></path><path d="M21 22v-4h-4"></path><path d="M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3"></path><path d="M3 10h4"></path><path d="M8 2v4"></path></svg><span>CalendarSync</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarX2.html" title="CalendarX2 date day month year event remove time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><path d="M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"></path><path d="M3 10h18"></path><path d="m17 22 5-5"></path><path d="m17 17 5 5"></path></svg><span>CalendarX2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CalendarX.html" title="CalendarX date day month year event remove busy time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M3 10h18"></path><path d="m14 14-4 4"></path><path d="m10 14 4 4"></path></svg><span>CalendarX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Calendar.html" title="Calendar date month year event birthday birthdate time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="18" x="3" y="4"></rect><path d="M3 10h18"></path></svg><span>Calendar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Calendars.html" title="Calendars date month year event dates months years events time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v2"></path><path d="M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2"></path><path d="M18 2v2"></path><path d="M2 13h2"></path><path d="M8 8h14"></path><rect height="14" rx="2" width="14" x="8" y="3"></rect></svg><span>Calendars</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CameraOff.html" title="CameraOff photo webcam video photography devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.564 14.558a3 3 0 1 1-4.122-4.121"></path><path d="m2 2 20 20"></path><path d="M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175"></path><path d="M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344"></path></svg><span>CameraOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Camera.html" title="Camera photography lens focus capture shot visual image device equipment photo webcam video photography devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"></path><circle cx="12" cy="13" r="3"></circle></svg><span>Camera</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CandyCane.html" title="CandyCane sugar food sweet christmas xmas food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z"></path><path d="M17.75 7 15 2.1"></path><path d="M10.9 4.8 13 9"></path><path d="m7.9 9.7 2 4.4"></path><path d="M4.9 14.7 7 18.9"></path></svg><span>CandyCane</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CandyOff.html" title="CandyOff sugar free food sweet allergy intolerance diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10v7.9"></path><path d="M11.802 6.145a5 5 0 0 1 6.053 6.053"></path><path d="M14 6.1v2.243"></path><path d="m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965"></path><path d="M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"></path><path d="m2 2 20 20"></path><path d="M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"></path></svg><span>CandyOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Candy.html" title="Candy sugar food sweet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 7v10.9"></path><path d="M14 6.1V17"></path><path d="M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"></path><path d="M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07"></path><path d="M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"></path></svg><span>Candy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CannabisOff.html" title="CannabisOff cannabis weed leaf nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-4c1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5"></path><path d="M13.988 8.327C13.902 6.054 13.365 3.82 12 2a9.3 9.3 0 0 0-1.445 2.9"></path><path d="M17.375 11.725C18.882 10.53 21 7.841 21 6c-2.324 0-5.08 1.296-6.662 2.684"></path><path d="m2 2 20 20"></path><path d="M21.024 15.378A15 15 0 0 0 22 15c-.426-1.279-2.67-2.557-4.25-2.907"></path><path d="M6.995 6.992C5.714 6.4 4.29 6 3 6c0 2 2.5 5 4 6-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3"></path></svg><span>CannabisOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cannabis.html" title="Cannabis cannabis weed leaf nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-4"></path><path d="M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6"></path></svg><span>Cannabis</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CaptionsOff.html" title="CaptionsOff closed captions subtitles subhead transcription transcribe dialogue accessibility multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 5H19a2 2 0 0 1 2 2v8.5"></path><path d="M17 11h-.5"></path><path d="M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2"></path><path d="m2 2 20 20"></path><path d="M7 11h4"></path><path d="M7 15h2.5"></path></svg><span>CaptionsOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Captions.html" title="Captions closed captions subtitles subhead transcription transcribe dialogue accessibility multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" ry="2" width="18" x="3" y="5"></rect><path d="M7 15h4M15 15h2M7 11h2M13 11h4"></path></svg><span>Captions</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CarFront.html" title="CarFront vehicle drive trip journey transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"></path><path d="M7 14h.01"></path><path d="M17 14h.01"></path><rect height="8" rx="2" width="18" x="3" y="10"></rect><path d="M5 18v2"></path><path d="M19 18v2"></path></svg><span>CarFront</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CarTaxiFront.html" title="CarTaxiFront cab vehicle drive trip journey transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2h4"></path><path d="m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"></path><path d="M7 14h.01"></path><path d="M17 14h.01"></path><rect height="8" rx="2" width="18" x="3" y="10"></rect><path d="M5 18v2"></path><path d="M19 18v2"></path></svg><span>CarTaxiFront</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Car.html" title="Car vehicle drive trip journey transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"></path><circle cx="7" cy="17" r="2"></circle><path d="M9 17h6"></path><circle cx="17" cy="17" r="2"></circle></svg><span>Car</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Caravan.html" title="Caravan trailer tow camping campsite mobile home holiday nomadic wilderness outdoors transportation travel nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2"></path><path d="M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2"></path><path d="M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9"></path><circle cx="8" cy="19" r="2"></circle></svg><span>Caravan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CardSim.html" title="CardSim cellphone smartphone mobile network cellular service provider signal coverage disk data format storage flash digital contacts phone book contractual circuit board chip connectivity communication multimedia devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 14v4"></path><path d="M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"></path><path d="M8 14h8"></path><rect height="8" rx="1" width="8" x="8" y="10"></rect></svg><span>CardSim</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Carrot.html" title="Carrot vegetable food eat food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"></path><path d="M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"></path><path d="M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"></path></svg><span>Carrot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CaseLower.html" title="CaseLower text letters characters font typography text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 9v7"></path><path d="M14 6v10"></path><circle cx="17.5" cy="12.5" r="3.5"></circle><circle cx="6.5" cy="12.5" r="3.5"></circle></svg><span>CaseLower</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CaseSensitive.html" title="CaseSensitive text letters characters font typography text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"></path><path d="M22 9v7"></path><path d="M3.304 13h6.392"></path><circle cx="18.5" cy="12.5" r="3.5"></circle></svg><span>CaseSensitive</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CaseUpper.html" title="CaseUpper text letters characters font typography text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5"></path><path d="m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"></path><path d="M3.304 13h6.392"></path></svg><span>CaseUpper</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CassetteTape.html" title="CassetteTape audio music recording play connectivity devices multimedia communication files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><circle cx="8" cy="10" r="2"></circle><path d="M8 12h8"></path><circle cx="16" cy="10" r="2"></circle><path d="m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"></path></svg><span>CassetteTape</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cast.html" title="Cast chromecast airplay screen devices connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path><path d="M2 12a9 9 0 0 1 8 8"></path><path d="M2 16a5 5 0 0 1 4 4"></path><line x1="2" x2="2.01" y1="20" y2="20"></line></svg><span>Cast</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Castle.html" title="Castle fortress stronghold palace chateau building buildings gaming navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 5V3"></path><path d="M14 5V3"></path><path d="M15 21v-3a3 3 0 0 0-6 0v3"></path><path d="M18 3v8"></path><path d="M18 5H6"></path><path d="M22 11H2"></path><path d="M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"></path><path d="M6 3v8"></path></svg><span>Castle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cat.html" title="Cat animal pet kitten feline animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"></path><path d="M8 14v.5"></path><path d="M16 14v.5"></path><path d="M11.25 16.25h1.5L12 17l-.75-.75Z"></path></svg><span>Cat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CctvOff.html" title="CctvOff camera surveillance recording film videotape crime watching security devices communication connectivity photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12.309 6.652 4.797 2.401a1 1 0 0 1 .447 1.341l-.501 1.001.605.605h2.725a1 1 0 0 1 .894 1.447l-.724 1.448"></path><path d="m15.166 15.166-.719 1.439a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.9 2.9 0 0 1 .873-1.037"></path><path d="M2 19h3.76a2 2 0 0 0 1.8-1.1l1.441-2.902"></path><path d="m2 2 20 20"></path><path d="M2 21v-4"></path><path d="M7 9h.01"></path></svg><span>CctvOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cctv.html" title="Cctv camera surveillance recording film videotape crime watching security devices communication connectivity photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97"></path><path d="M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z"></path><path d="M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15"></path><path d="M2 21v-4"></path><path d="M7 9h.01"></path></svg><span>Cctv</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartArea.html" title="ChartArea statistics analytics diagram graph area charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"></path></svg><span>ChartArea</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartBarBig.html" title="ChartBarBig statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><rect height="4" rx="1" width="9" x="7" y="13"></rect><rect height="4" rx="1" width="12" x="7" y="5"></rect></svg><span>ChartBarBig</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartBarDecreasing.html" title="ChartBarDecreasing statistics analytics diagram graph trending down charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M7 11h8"></path><path d="M7 16h3"></path><path d="M7 6h12"></path></svg><span>ChartBarDecreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartBarIncreasing.html" title="ChartBarIncreasing statistics analytics diagram graph trending up charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M7 11h8"></path><path d="M7 16h12"></path><path d="M7 6h3"></path></svg><span>ChartBarIncreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartBarStacked.html" title="ChartBarStacked statistics analytics diagram graph multivariate categorical comparison charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 13v4"></path><path d="M15 5v4"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><rect height="4" rx="1" width="9" x="7" y="13"></rect><rect height="4" rx="1" width="12" x="7" y="5"></rect></svg><span>ChartBarStacked</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartBar.html" title="ChartBar statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M7 16h8"></path><path d="M7 11h12"></path><path d="M7 6h3"></path></svg><span>ChartBar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartCandlestick.html" title="ChartCandlestick trading trader financial markets portfolio assets prices value valuation commodities currencies currency stocks exchange hedge fund statistics analytics diagram graph charts finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 5v4"></path><rect height="6" rx="1" width="4" x="7" y="9"></rect><path d="M9 15v2"></path><path d="M17 3v2"></path><rect height="8" rx="1" width="4" x="15" y="5"></rect><path d="M17 13v3"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path></svg><span>ChartCandlestick</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartColumnBig.html" title="ChartColumnBig statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><rect height="12" rx="1" width="4" x="15" y="5"></rect><rect height="9" rx="1" width="4" x="7" y="8"></rect></svg><span>ChartColumnBig</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartColumnDecreasing.html" title="ChartColumnDecreasing statistics analytics diagram graph trending down charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 17V9"></path><path d="M18 17v-3"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M8 17V5"></path></svg><span>ChartColumnDecreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartColumnIncreasing.html" title="ChartColumnIncreasing statistics analytics diagram graph trending up charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 17V9"></path><path d="M18 17V5"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M8 17v-3"></path></svg><span>ChartColumnIncreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartColumnStacked.html" title="ChartColumnStacked statistics analytics diagram graph multivariate categorical comparison charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 13H7"></path><path d="M19 9h-4"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><rect height="12" rx="1" width="4" x="15" y="5"></rect><rect height="9" rx="1" width="4" x="7" y="8"></rect></svg><span>ChartColumnStacked</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartColumn.html" title="ChartColumn statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M18 17V9"></path><path d="M13 17V5"></path><path d="M8 17v-3"></path></svg><span>ChartColumn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartGantt.html" title="ChartGantt diagram graph timeline planning charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 6h8"></path><path d="M12 16h6"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M8 11h7"></path></svg><span>ChartGantt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartLine.html" title="ChartLine statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="m19 9-5 5-4-4-3 3"></path></svg><span>ChartLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartNetwork.html" title="ChartNetwork statistics analytics diagram graph topology cluster web nodes connections edges charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m13.11 7.664 1.78 2.672"></path><path d="m14.162 12.788-3.324 1.424"></path><path d="m20 4-6.06 1.515"></path><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><circle cx="12" cy="6" r="2"></circle><circle cx="16" cy="12" r="2"></circle><circle cx="9" cy="15" r="2"></circle></svg><span>ChartNetwork</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartNoAxesColumnDecreasing.html" title="ChartNoAxesColumnDecreasing statistics analytics diagram graph trending down charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 21V3"></path><path d="M12 21V9"></path><path d="M19 21v-6"></path></svg><span>ChartNoAxesColumnDecreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartNoAxesColumnIncreasing.html" title="ChartNoAxesColumnIncreasing statistics analytics diagram graph trending up charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 21v-6"></path><path d="M12 21V9"></path><path d="M19 21V3"></path></svg><span>ChartNoAxesColumnIncreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartNoAxesColumn.html" title="ChartNoAxesColumn statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 21v-6"></path><path d="M12 21V3"></path><path d="M19 21V9"></path></svg><span>ChartNoAxesColumn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartNoAxesCombined.html" title="ChartNoAxesCombined statistics analytics diagram graph trending up charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 16v5"></path><path d="M16 14v7"></path><path d="M20 10v11"></path><path d="m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15"></path><path d="M4 18v3"></path><path d="M8 14v7"></path></svg><span>ChartNoAxesCombined</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartNoAxesGantt.html" title="ChartNoAxesGantt projects manage overview roadmap plan intentions timeline deadline date event range period productivity work agile code coding charts time development design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 5h12"></path><path d="M4 12h10"></path><path d="M12 19h8"></path></svg><span>ChartNoAxesGantt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartPie.html" title="ChartPie statistics analytics diagram presentation charts files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z"></path><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path></svg><span>ChartPie</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartScatter.html" title="ChartScatter statistics analytics diagram graph charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="7.5" cy="7.5" fill="currentColor" r=".5"></circle><circle cx="18.5" cy="5.5" fill="currentColor" r=".5"></circle><circle cx="11.5" cy="11.5" fill="currentColor" r=".5"></circle><circle cx="7.5" cy="16.5" fill="currentColor" r=".5"></circle><circle cx="17.5" cy="14.5" fill="currentColor" r=".5"></circle><path d="M3 3v16a2 2 0 0 0 2 2h16"></path></svg><span>ChartScatter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChartSpline.html" title="ChartSpline statistics analytics diagram graph curve continuous smooth polynomial quadratic function interpolation charts"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"></path></svg><span>ChartSpline</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CheckCheck.html" title="CheckCheck done received double todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 6 7 17l-5-5"></path><path d="m22 10-7.5 7.5L13 16"></path></svg><span>CheckCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CheckLine.html" title="CheckLine done todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 4L9 15"></path><path d="M21 19L3 19"></path><path d="M9 15L4 10"></path></svg><span>CheckLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Check.html" title="Check done todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"></path></svg><span>Check</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChefHat.html" title="ChefHat cooking food kitchen restaurant food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"></path><path d="M6 17h12"></path></svg><span>ChefHat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cherry.html" title="Cherry fruit food food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"></path><path d="M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"></path><path d="M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"></path><path d="M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"></path></svg><span>Cherry</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChessBishop.html" title="ChessBishop mitre miter piece board game religion gaming emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"></path><path d="M15 18c1.5-.615 3-2.461 3-4.923C18 8.769 14.5 4.462 12 2 9.5 4.462 6 8.77 6 13.077 6 15.539 7.5 17.385 9 18"></path><path d="m16 7-2.5 2.5"></path><path d="M9 2h6"></path></svg><span>ChessBishop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChessKing.html" title="ChessKing ruler crown piece board game stalemate gaming emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z"></path><path d="m6.7 18-1-1C4.35 15.682 3 14.09 3 12a5 5 0 0 1 4.95-5c1.584 0 2.7.455 4.05 1.818C13.35 7.455 14.466 7 16.05 7A5 5 0 0 1 21 12c0 2.082-1.359 3.673-2.7 5l-1 1"></path><path d="M10 4h4"></path><path d="M12 2v6.818"></path></svg><span>ChessKing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChessKnight.html" title="ChessKnight piece horse board game gaming emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"></path><path d="M16.5 18c1-2 2.5-5 2.5-9a7 7 0 0 0-7-7H6.635a1 1 0 0 0-.768 1.64L7 5l-2.32 5.802a2 2 0 0 0 .95 2.526l2.87 1.456"></path><path d="m15 5 1.425-1.425"></path><path d="m17 8 1.53-1.53"></path><path d="M9.713 12.185 7 18"></path></svg><span>ChessKnight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChessPawn.html" title="ChessPawn piece board game gaming emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"></path><path d="m14.5 10 1.5 8"></path><path d="M7 10h10"></path><path d="m8 18 1.5-8"></path><circle cx="12" cy="6" r="4"></circle></svg><span>ChessPawn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChessQueen.html" title="ChessQueen ruler crown piece board game stalemate gaming emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z"></path><path d="m12.474 5.943 1.567 5.34a1 1 0 0 0 1.75.328l2.616-3.402"></path><path d="m20 9-3 9"></path><path d="m5.594 8.209 2.615 3.403a1 1 0 0 0 1.75-.329l1.567-5.34"></path><path d="M7 18 4 9"></path><circle cx="12" cy="4" r="2"></circle><circle cx="20" cy="7" r="2"></circle><circle cx="4" cy="7" r="2"></circle></svg><span>ChessQueen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChessRook.html" title="ChessRook castle piece board game gaming emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"></path><path d="M10 2v2"></path><path d="M14 2v2"></path><path d="m17 18-1-9"></path><path d="M6 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2"></path><path d="M6 4h12"></path><path d="m7 18 1-9"></path></svg><span>ChessRook</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronDown.html" title="ChevronDown backwards reverse slow dropdown arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"></path></svg><span>ChevronDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronFirst.html" title="ChevronFirst previous music arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 18-6-6 6-6"></path><path d="M7 6v12"></path></svg><span>ChevronFirst</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronLast.html" title="ChevronLast skip next music arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 18 6-6-6-6"></path><path d="M17 6v12"></path></svg><span>ChevronLast</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronLeft.html" title="ChevronLeft back previous less than fewer menu &lt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 18-6-6 6-6"></path></svg><span>ChevronLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronRight.html" title="ChevronRight forward next more than greater menu code coding command line terminal prompt shell &gt; arrows math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"></path></svg><span>ChevronRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronUp.html" title="ChevronUp caret keyboard mac control ctrl superscript exponential power ahead fast ^ dropdown arrows math gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"></path></svg><span>ChevronUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsDownUp.html" title="ChevronsDownUp collapse fold vertical arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 20 5-5 5 5"></path><path d="m7 4 5 5 5-5"></path></svg><span>ChevronsDownUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsDown.html" title="ChevronsDown backwards reverse slower arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 6 5 5 5-5"></path><path d="m7 13 5 5 5-5"></path></svg><span>ChevronsDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsLeftRightEllipsis.html" title="ChevronsLeftRightEllipsis internet network connection cable lan port router switch hub modem web online networking communication socket plug slot controller connector interface console signal data input output communication devices multimedia gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12h.01"></path><path d="M16 12h.01"></path><path d="m17 7 5 5-5 5"></path><path d="m7 7-5 5 5 5"></path><path d="M8 12h.01"></path></svg><span>ChevronsLeftRightEllipsis</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsLeftRight.html" title="ChevronsLeftRight expand horizontal unfold arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 7-5 5 5 5"></path><path d="m15 7 5 5-5 5"></path></svg><span>ChevronsLeftRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsLeft.html" title="ChevronsLeft turn corner arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 17-5-5 5-5"></path><path d="m18 17-5-5 5-5"></path></svg><span>ChevronsLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsRightLeft.html" title="ChevronsRightLeft collapse fold horizontal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m20 17-5-5 5-5"></path><path d="m4 17 5-5-5-5"></path></svg><span>ChevronsRightLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsRight.html" title="ChevronsRight turn corner arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 17 5-5-5-5"></path><path d="m13 17 5-5-5-5"></path></svg><span>ChevronsRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsUpDown.html" title="ChevronsUpDown expand unfold vertical arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 15 5 5 5-5"></path><path d="m7 9 5-5 5 5"></path></svg><span>ChevronsUpDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ChevronsUp.html" title="ChevronsUp forward ahead faster speed boost arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 11-5-5-5 5"></path><path d="m17 18-5-5-5 5"></path></svg><span>ChevronsUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Church.html" title="Church temple building buildings navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 9h4"></path><path d="M12 7v5"></path><path d="M14 21v-3a2 2 0 0 0-4 0v3"></path><path d="m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9"></path><path d="M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14"></path></svg><span>Church</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CigaretteOff.html" title="CigaretteOff smoking no-smoking travel transportation medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13"></path><path d="M18 8c0-2.5-2-2.5-2-5"></path><path d="m2 2 20 20"></path><path d="M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866"></path><path d="M22 8c0-2.5-2-2.5-2-5"></path><path d="M7 12v4"></path></svg><span>CigaretteOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cigarette.html" title="Cigarette smoking travel transportation medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14"></path><path d="M18 8c0-2.5-2-2.5-2-5"></path><path d="M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"></path><path d="M22 8c0-2.5-2-2.5-2-5"></path><path d="M7 12v4"></path></svg><span>Cigarette</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleAlert.html" title="CircleAlert warning alert danger exclamation mark notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" x2="12" y1="8" y2="12"></line><line x1="12" x2="12.01" y1="16" y2="16"></line></svg><span>CircleAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowDown.html" title="CircleArrowDown backwards reverse direction south sign button arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 8v8"></path><path d="m8 12 4 4 4-4"></path></svg><span>CircleArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowLeft.html" title="CircleArrowLeft previous back direction west sign turn button &lt;- arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m12 8-4 4 4 4"></path><path d="M16 12H8"></path></svg><span>CircleArrowLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowOutDownLeft.html" title="CircleArrowOutDownLeft outwards direction south-west diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12a10 10 0 1 1 10 10"></path><path d="m2 22 10-10"></path><path d="M8 22H2v-6"></path></svg><span>CircleArrowOutDownLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowOutDownRight.html" title="CircleArrowOutDownRight outwards direction south-east diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22a10 10 0 1 1 10-10"></path><path d="M22 22 12 12"></path><path d="M22 16v6h-6"></path></svg><span>CircleArrowOutDownRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowOutUpLeft.html" title="CircleArrowOutUpLeft outwards direction north-west diagonal keyboard button escape arrows development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 8V2h6"></path><path d="m2 2 10 10"></path><path d="M12 2A10 10 0 1 1 2 12"></path></svg><span>CircleArrowOutUpLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowOutUpRight.html" title="CircleArrowOutUpRight outwards direction north-east diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12A10 10 0 1 1 12 2"></path><path d="M22 2 12 12"></path><path d="M16 2h6v6"></path></svg><span>CircleArrowOutUpRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowRight.html" title="CircleArrowRight next forward direction east sign turn button -&gt; arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m12 16 4-4-4-4"></path><path d="M8 12h8"></path></svg><span>CircleArrowRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleArrowUp.html" title="CircleArrowUp forward direction north sign button arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m16 12-4-4-4 4"></path><path d="M12 16V8"></path></svg><span>CircleArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleCheckBig.html" title="CircleCheckBig done todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.801 10A10 10 0 1 1 17 3.335"></path><path d="m9 11 3 3L22 4"></path></svg><span>CircleCheckBig</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleCheck.html" title="CircleCheck done todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m9 12 2 2 4-4"></path></svg><span>CircleCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleChevronDown.html" title="CircleChevronDown back menu arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m16 10-4 4-4-4"></path></svg><span>CircleChevronDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleChevronLeft.html" title="CircleChevronLeft back previous less than fewer menu &lt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m14 16-4-4 4-4"></path></svg><span>CircleChevronLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleChevronRight.html" title="CircleChevronRight back more than greater menu &gt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m10 8 4 4-4 4"></path></svg><span>CircleChevronRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleChevronUp.html" title="CircleChevronUp caret ahead menu ^ arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m8 14 4-4 4 4"></path></svg><span>CircleChevronUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleDashed.html" title="CircleDashed pending dot progress issue draft code coding version control development shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.1 2.182a10 10 0 0 1 3.8 0"></path><path d="M13.9 21.818a10 10 0 0 1-3.8 0"></path><path d="M17.609 3.721a10 10 0 0 1 2.69 2.7"></path><path d="M2.182 13.9a10 10 0 0 1 0-3.8"></path><path d="M20.279 17.609a10 10 0 0 1-2.7 2.69"></path><path d="M21.818 10.1a10 10 0 0 1 0 3.8"></path><path d="M3.721 6.391a10 10 0 0 1 2.7-2.69"></path><path d="M6.391 20.279a10 10 0 0 1-2.69-2.7"></path></svg><span>CircleDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleDivide.html" title="CircleDivide calculate math ÷ / math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="8" x2="16" y1="12" y2="12"></line><line x1="12" x2="12" y1="16" y2="16"></line><line x1="12" x2="12" y1="8" y2="8"></line></svg><span>CircleDivide</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleDollarSign.html" title="CircleDollarSign monetization marketing currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"></path><path d="M12 18V6"></path></svg><span>CircleDollarSign</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleDotDashed.html" title="CircleDotDashed pending dot progress issue draft code coding version control development shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.1 2.18a9.93 9.93 0 0 1 3.8 0"></path><path d="M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7"></path><path d="M21.82 10.1a9.93 9.93 0 0 1 0 3.8"></path><path d="M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69"></path><path d="M13.9 21.82a9.94 9.94 0 0 1-3.8 0"></path><path d="M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7"></path><path d="M2.18 13.9a9.93 9.93 0 0 1 0-3.8"></path><path d="M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69"></path><circle cx="12" cy="12" r="1"></circle></svg><span>CircleDotDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleDot.html" title="CircleDot pending dot progress issue code coding version control choices multiple choice choose development shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="1"></circle></svg><span>CircleDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleEllipsis.html" title="CircleEllipsis ellipsis et cetera etc loader loading progress pending throbber menu options operator code spread rest more further extra overflow dots … ... layout development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M17 12h.01"></path><path d="M12 12h.01"></path><path d="M7 12h.01"></path></svg><span>CircleEllipsis</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleEqual.html" title="CircleEqual calculate shape = math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M7 10h10"></path><path d="M7 14h10"></path></svg><span>CircleEqual</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleFadingArrowUp.html" title="CircleFadingArrowUp north up upgrade improve circle button arrows development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a10 10 0 0 1 7.38 16.75"></path><path d="m16 12-4-4-4 4"></path><path d="M12 16V8"></path><path d="M2.5 8.875a10 10 0 0 0-.5 3"></path><path d="M2.83 16a10 10 0 0 0 2.43 3.4"></path><path d="M4.636 5.235a10 10 0 0 1 .891-.857"></path><path d="M8.644 21.42a10 10 0 0 0 7.631-.38"></path></svg><span>CircleFadingArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleFadingPlus.html" title="CircleFadingPlus stories social media instagram facebook meta snapchat sharing content communication social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a10 10 0 0 1 7.38 16.75"></path><path d="M12 8v8"></path><path d="M16 12H8"></path><path d="M2.5 8.875a10 10 0 0 0-.5 3"></path><path d="M2.83 16a10 10 0 0 0 2.43 3.4"></path><path d="M4.636 5.235a10 10 0 0 1 .891-.857"></path><path d="M8.644 21.42a10 10 0 0 0 7.631-.38"></path></svg><span>CircleFadingPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleGauge.html" title="CircleGauge dashboard dial meter speed pressure measure level transportation sports science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.6 2.7a10 10 0 1 0 5.7 5.7"></path><circle cx="12" cy="12" r="2"></circle><path d="M13.4 10.6 19 5"></path></svg><span>CircleGauge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleMinus.html" title="CircleMinus subtract remove decrease reduce calculate line operator code coding minimum downgrade - math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 12h8"></path></svg><span>CircleMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleOff.html" title="CircleOff diameter zero Ø nothing null void cancel ban no stop forbidden prohibited error incorrect mistake wrong failure shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 2 20 20"></path><path d="M8.35 2.69A10 10 0 0 1 21.3 15.65"></path><path d="M19.08 19.08A10 10 0 1 1 4.92 4.92"></path></svg><span>CircleOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleParkingOff.html" title="CircleParkingOff parking lot car park no parking transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.656 7H13a3 3 0 0 1 2.984 3.307"></path><path d="M13 13H9"></path><path d="M19.071 19.071A1 1 0 0 1 4.93 4.93"></path><path d="m2 2 20 20"></path><path d="M8.357 2.687a10 10 0 0 1 12.956 12.956"></path><path d="M9 17V9"></path></svg><span>CircleParkingOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleParking.html" title="CircleParking parking lot car park transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M9 17V7h4a3 3 0 0 1 0 6H9"></path></svg><span>CircleParking</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePause.html" title="CirclePause music audio stop multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="10" x2="10" y1="15" y2="9"></line><line x1="14" x2="14" y1="15" y2="9"></line></svg><span>CirclePause</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePercent.html" title="CirclePercent verified unverified sale discount offer marketing sticker price tag social finance shopping math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m15 9-6 6"></path><path d="M9 9h.01"></path><path d="M15 15h.01"></path></svg><span>CirclePercent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePile.html" title="CirclePile off zero record shape circle-pile circle pile stack layer structure form group collection stock inventory materials warehouse shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="19" r="2"></circle><circle cx="12" cy="5" r="2"></circle><circle cx="16" cy="12" r="2"></circle><circle cx="20" cy="19" r="2"></circle><circle cx="4" cy="19" r="2"></circle><circle cx="8" cy="12" r="2"></circle></svg><span>CirclePile</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePlay.html" title="CirclePlay music start run multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"></path><circle cx="12" cy="12" r="10"></circle></svg><span>CirclePlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePlus.html" title="CirclePlus add new increase increment positive calculate crosshair aim target scope sight reticule maximum upgrade extra operator join concatenate code coding + math development cursors gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 12h8"></path><path d="M12 8v8"></path></svg><span>CirclePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePoundSterling.html" title="CirclePoundSterling monetization coin penny marketing currency money payment british gbp £ finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M10 16V9.5a1 1 0 0 1 5 0"></path><path d="M8 12h4"></path><path d="M8 16h7"></path></svg><span>CirclePoundSterling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CirclePower.html" title="CirclePower on off device switch toggle binary boolean reboot restart button keyboard troubleshoot connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 7v4"></path><path d="M7.998 9.003a5 5 0 1 0 8-.005"></path></svg><span>CirclePower</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleQuestionMark.html" title="CircleQuestionMark question mark accessibility text notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><path d="M12 17h.01"></path></svg><span>CircleQuestionMark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleSlash2.html" title="CircleSlash2 diameter zero ø nothing null void ban math divide division half split / average avg mean median normal shapes math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M22 2 2 22"></path></svg><span>CircleSlash2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleSlash.html" title="CircleSlash diameter zero Ø nothing null void cancel ban no stop forbidden prohibited error incorrect mistake wrong failure divide division or / development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="9" x2="15" y1="15" y2="9"></line></svg><span>CircleSlash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleSmall.html" title="CircleSmall shape bullet gender genderless shapes medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="6"></circle></svg><span>CircleSmall</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleStar.html" title="CircleStar badge medal honour decoration order pin laurel trophy medallion insignia bronze silver gold sports gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"></path></svg><span>CircleStar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleStop.html" title="CircleStop media music multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><rect height="6" rx="1" width="6" x="9" y="9"></rect></svg><span>CircleStop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleUserRound.html" title="CircleUserRound person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.925 20.056a6 6 0 0 0-11.851.001"></path><circle cx="12" cy="11" r="4"></circle><circle cx="12" cy="12" r="10"></circle></svg><span>CircleUserRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleUser.html" title="CircleUser person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="10" r="3"></circle><path d="M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662"></path></svg><span>CircleUser</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircleX.html" title="CircleX cancel close delete remove times clear error incorrect wrong mistake failure linter multiply multiplication math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m15 9-6 6"></path><path d="m9 9 6 6"></path></svg><span>CircleX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Circle.html" title="Circle off zero record shape shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle></svg><span>Circle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CircuitBoard.html" title="CircuitBoard computing electricity electronics science development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M11 9h4a2 2 0 0 0 2-2V3"></path><circle cx="9" cy="9" r="2"></circle><path d="M7 21v-4a2 2 0 0 1 2-2h4"></path><circle cx="15" cy="15" r="2"></circle></svg><span>CircuitBoard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Citrus.html" title="Citrus lemon orange grapefruit fruit food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z"></path><path d="M19.65 15.66A8 8 0 0 1 8.35 4.34"></path><path d="m14 10-5.5 5.5"></path><path d="M14 17.85V10H6.15"></path></svg><span>Citrus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clapperboard.html" title="Clapperboard movie film video camera cinema cut action television tv show entertainment multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12.296 3.464 3.02 3.956"></path><path d="M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3z"></path><path d="M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><path d="m6.18 5.276 3.1 3.899"></path></svg><span>Clapperboard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardCheck.html" title="ClipboardCheck copied pasted done todo tick complete task text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><path d="m9 14 2 2 4-4"></path></svg><span>ClipboardCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardClock.html" title="ClipboardClock copy paste history log clock time watch alarm hour minute reminder scheduled deadline pending time tracking timesheets appointment logbook time text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 14v2.2l1.6 1"></path><path d="M16 4h2a2 2 0 0 1 2 2v.832"></path><path d="M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"></path><circle cx="16" cy="16" r="6"></circle><rect height="4" rx="1" width="8" x="8" y="2"></rect></svg><span>ClipboardClock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardCopy.html" title="ClipboardCopy copy paste text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"></path><path d="M16 4h2a2 2 0 0 1 2 2v4"></path><path d="M21 14H11"></path><path d="m15 10-4 4 4 4"></path></svg><span>ClipboardCopy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardList.html" title="ClipboardList copy paste tasks text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><path d="M12 11h4"></path><path d="M12 16h4"></path><path d="M8 11h.01"></path><path d="M8 16h.01"></path></svg><span>ClipboardList</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardMinus.html" title="ClipboardMinus copy delete remove erase document medical report doctor text medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><path d="M9 14h6"></path></svg><span>ClipboardMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardPaste.html" title="ClipboardPaste copy paste text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 14h10"></path><path d="M16 4h2a2 2 0 0 1 2 2v1.344"></path><path d="m17 18 4-4-4-4"></path><path d="M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113"></path><rect height="4" rx="1" width="8" x="8" y="2"></rect></svg><span>ClipboardPaste</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardPenLine.html" title="ClipboardPenLine paste text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" width="8" x="8" y="2"></rect><path d="M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"></path><path d="M16 4h2a2 2 0 0 1 1.73 1"></path><path d="M8 18h1"></path><path d="M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path></svg><span>ClipboardPenLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardPen.html" title="ClipboardPen paste signature text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4h2a2 2 0 0 1 2 2v2"></path><path d="M21.34 15.664a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path><path d="M8 22H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect height="4" rx="1" width="8" x="8" y="2"></rect></svg><span>ClipboardPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardPlus.html" title="ClipboardPlus copy paste add create new document medical report doctor text medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><path d="M9 14h6"></path><path d="M12 17v-6"></path></svg><span>ClipboardPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardType.html" title="ClipboardType paste format text text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><path d="M9 12v-1h6v1"></path><path d="M11 17h2"></path><path d="M12 11v6"></path></svg><span>ClipboardType</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClipboardX.html" title="ClipboardX copy paste discard remove text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><path d="m15 11-6 6"></path><path d="m9 11 6 6"></path></svg><span>ClipboardX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clipboard.html" title="Clipboard copy paste text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="4" rx="1" ry="1" width="8" x="8" y="2"></rect><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path></svg><span>Clipboard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock1.html" title="Clock1 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l2-4"></path></svg><span>Clock1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock10.html" title="Clock10 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l-4-2"></path></svg><span>Clock10</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock11.html" title="Clock11 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l-2-4"></path></svg><span>Clock11</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock12.html" title="Clock12 time watch alarm noon midnight time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6"></path></svg><span>Clock12</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock2.html" title="Clock2 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l4-2"></path></svg><span>Clock2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock3.html" title="Clock3 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6h4"></path></svg><span>Clock3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock4.html" title="Clock4 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l4 2"></path></svg><span>Clock4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock5.html" title="Clock5 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l2 4"></path></svg><span>Clock5</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock6.html" title="Clock6 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v10"></path></svg><span>Clock6</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock7.html" title="Clock7 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l-2 4"></path></svg><span>Clock7</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock8.html" title="Clock8 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l-4 2"></path></svg><span>Clock8</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock9.html" title="Clock9 time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6H8"></path></svg><span>Clock9</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClockAlert.html" title="ClockAlert time watch alarm warning wrong time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v6l4 2"></path><path d="M20 12v5"></path><path d="M20 21h.01"></path><path d="M21.25 8.2A10 10 0 1 0 16 21.16"></path></svg><span>ClockAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClockArrowDown.html" title="ClockArrowDown time watch alarm sort order ascending descending increasing decreasing rising falling time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v6l2 1"></path><path d="M12.337 21.994a10 10 0 1 1 9.588-8.767"></path><path d="m14 18 4 4 4-4"></path><path d="M18 14v8"></path></svg><span>ClockArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClockArrowUp.html" title="ClockArrowUp time watch alarm sort order ascending descending increasing decreasing rising falling time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v6l1.56.78"></path><path d="M13.227 21.925a10 10 0 1 1 8.767-9.588"></path><path d="m14 18 4-4 4 4"></path><path d="M18 22v-8"></path></svg><span>ClockArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClockCheck.html" title="ClockCheck time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v6l4 2"></path><path d="M22 12a10 10 0 1 0-11 9.95"></path><path d="m22 16-5.5 5.5L14 19"></path></svg><span>ClockCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClockFading.html" title="ClockFading time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a10 10 0 0 1 7.38 16.75"></path><path d="M12 6v6l4 2"></path><path d="M2.5 8.875a10 10 0 0 0-.5 3"></path><path d="M2.83 16a10 10 0 0 0 2.43 3.4"></path><path d="M4.636 5.235a10 10 0 0 1 .891-.857"></path><path d="M8.644 21.42a10 10 0 0 0 7.631-.38"></path></svg><span>ClockFading</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClockPlus.html" title="ClockPlus time watch alarm add create new time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v6l3.644 1.822"></path><path d="M16 19h6"></path><path d="M19 16v6"></path><path d="M21.92 13.267a10 10 0 1 0-8.653 8.653"></path></svg><span>ClockPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clock.html" title="Clock time watch alarm time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l4 2"></path></svg><span>Clock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ClosedCaption.html" title="ClosedCaption tv movie video closed captions subtitles subhead transcription transcribe dialogue accessibility accessibility multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 9.17a3 3 0 1 0 0 5.66"></path><path d="M17 9.17a3 3 0 1 0 0 5.66"></path><rect height="14" rx="2" width="20" x="2" y="5"></rect></svg><span>ClosedCaption</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudAlert.html" title="CloudAlert weather danger warning alert error sync network exclamation development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12v4"></path><path d="M12 20h.01"></path><path d="M8.128 16.949A7 7 0 1 1 15.71 8h1.79a1 1 0 0 1 0 9h-1.642"></path></svg><span>CloudAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudBackup.html" title="CloudBackup storage memory bytes servers backup timemachine rotate synchronize synchronise refresh reconnect transfer data security upload save remote safety arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15.251A4.5 4.5 0 0 0 17.5 8h-1.79A7 7 0 1 0 3 13.607"></path><path d="M7 11v4h4"></path><path d="M8 19a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5 4.82 4.82 0 0 0-3.41 1.41L7 15"></path></svg><span>CloudBackup</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudCheck.html" title="CloudCheck sync network success done completed saved persisted development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 15-5.5 5.5L9 18"></path><path d="M5.516 16.07A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 3.501 7.327"></path></svg><span>CloudCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudCog.html" title="CloudCog computing ai cluster network development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.852 19.772-.383.924"></path><path d="m13.148 14.228.383-.923"></path><path d="M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923"></path><path d="m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544"></path><path d="m14.772 15.852.923-.383"></path><path d="m14.772 18.148.923.383"></path><path d="M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2"></path><path d="m9.228 15.852-.923-.383"></path><path d="m9.228 18.148-.923.383"></path></svg><span>CloudCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudDownload.html" title="CloudDownload import arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v8l-4-4"></path><path d="m12 21 4-4"></path><path d="M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284"></path></svg><span>CloudDownload</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudDrizzle.html" title="CloudDrizzle weather shower weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="M8 19v1"></path><path d="M8 14v1"></path><path d="M16 19v1"></path><path d="M16 14v1"></path><path d="M12 21v1"></path><path d="M12 16v1"></path></svg><span>CloudDrizzle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudFog.html" title="CloudFog weather mist weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="M16 17H7"></path><path d="M17 21H9"></path></svg><span>CloudFog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudHail.html" title="CloudHail weather rainfall weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="M16 14v2"></path><path d="M8 14v2"></path><path d="M16 20h.01"></path><path d="M8 20h.01"></path><path d="M12 16v2"></path><path d="M12 22h.01"></path></svg><span>CloudHail</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudLightning.html" title="CloudLightning weather bolt weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"></path><path d="m13 12-3 5h4l-3 5"></path></svg><span>CloudLightning</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudMoonRain.html" title="CloudMoonRain weather partly night rainfall weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 20v2"></path><path d="M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"></path><path d="M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"></path><path d="M7 19v2"></path></svg><span>CloudMoonRain</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudMoon.html" title="CloudMoon weather night weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z"></path><path d="M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"></path></svg><span>CloudMoon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudOff.html" title="CloudOff disconnect connectivity weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.94 5.274A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.222 6.057"></path><path d="M18.796 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78"></path><path d="m2 2 20 20"></path></svg><span>CloudOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudRainWind.html" title="CloudRainWind weather rainfall weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="m9.2 22 3-7"></path><path d="m9 13-3 7"></path><path d="m17 13-3 7"></path></svg><span>CloudRainWind</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudRain.html" title="CloudRain weather rainfall weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="M16 14v6"></path><path d="M8 14v6"></path><path d="M12 16v6"></path></svg><span>CloudRain</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudSnow.html" title="CloudSnow weather blizzard weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="M8 15h.01"></path><path d="M8 19h.01"></path><path d="M12 17h.01"></path><path d="M12 21h.01"></path><path d="M16 15h.01"></path><path d="M16 19h.01"></path></svg><span>CloudSnow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudSunRain.html" title="CloudSunRain weather partly rainfall weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v2"></path><path d="m4.93 4.93 1.41 1.41"></path><path d="M20 12h2"></path><path d="m19.07 4.93-1.41 1.41"></path><path d="M15.947 12.65a4 4 0 0 0-5.925-4.128"></path><path d="M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"></path><path d="M11 20v2"></path><path d="M7 19v2"></path></svg><span>CloudSunRain</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudSun.html" title="CloudSun weather partly weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v2"></path><path d="m4.93 4.93 1.41 1.41"></path><path d="M20 12h2"></path><path d="m19.07 4.93-1.41 1.41"></path><path d="M15.947 12.65a4 4 0 0 0-5.925-4.128"></path><path d="M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"></path></svg><span>CloudSun</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudSync.html" title="CloudSync synchronize synchronise refresh reconnect transfer backup storage upload download connection network data arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 18-1.535 1.605a5 5 0 0 1-8-1.5"></path><path d="M17 22v-4h-4"></path><path d="M20.996 15.251A4.5 4.5 0 0 0 17.495 8h-1.79a7 7 0 1 0-12.709 5.607"></path><path d="M7 10v4h4"></path><path d="m7 14 1.535-1.605a5 5 0 0 1 8 1.5"></path></svg><span>CloudSync</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CloudUpload.html" title="CloudUpload file arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v8"></path><path d="M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"></path><path d="m8 17 4-4 4 4"></path></svg><span>CloudUpload</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cloud.html" title="Cloud weather weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"></path></svg><span>Cloud</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cloudy.html" title="Cloudy weather clouds weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.5 12a1 1 0 1 1 0 9H9.006a7 7 0 1 1 6.702-9z"></path><path d="M21.832 9A3 3 0 0 0 19 7h-2.207a5.5 5.5 0 0 0-10.72.61"></path></svg><span>Cloudy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Clover.html" title="Clover leaf luck plant gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.17 7.83 2 22"></path><path d="M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12"></path><path d="m7.83 7.83 8.34 8.34"></path></svg><span>Clover</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Club.html" title="Club shape suit playing cards shapes gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z"></path><path d="M12 17.66L12 22"></path></svg><span>Club</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CodeXml.html" title="CodeXml source programming html xml text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 16 4-4-4-4"></path><path d="m6 8-4 4 4 4"></path><path d="m14.5 4-5 16"></path></svg><span>CodeXml</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Code.html" title="Code source programming html xml text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 18 6-6-6-6"></path><path d="m8 6-6 6 6 6"></path></svg><span>Code</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Coffee.html" title="Coffee drink cup mug tea cafe hot beverage food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v2"></path><path d="M14 2v2"></path><path d="M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1"></path><path d="M6 2v2"></path></svg><span>Coffee</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cog.html" title="Cog computing settings cog edit gear preferences controls configuration fixed build construction parts account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 10.27 7 3.34"></path><path d="m11 13.73-4 6.93"></path><path d="M12 22v-2"></path><path d="M12 2v2"></path><path d="M14 12h8"></path><path d="m17 20.66-1-1.73"></path><path d="m17 3.34-1 1.73"></path><path d="M2 12h2"></path><path d="m20.66 17-1.73-1"></path><path d="m20.66 7-1.73 1"></path><path d="m3.34 17 1.73-1"></path><path d="m3.34 7 1.73 1"></path><circle cx="12" cy="12" r="2"></circle><circle cx="12" cy="12" r="8"></circle></svg><span>Cog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Coins.html" title="Coins money cash finance gamble gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.744 17.736a6 6 0 1 1-7.48-7.48"></path><path d="M15 6h1v4"></path><path d="m6.134 14.768.866-.5 2 3.464"></path><circle cx="16" cy="8" r="6"></circle></svg><span>Coins</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Columns2.html" title="Columns2 lines list queue preview panel parallel series split vertical horizontal half center middle even sidebar drawer gutter fold reflow typography pagination pages layout design text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M12 3v18"></path></svg><span>Columns2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Columns3Cog.html" title="Columns3Cog columns settings customize table grid adjust configuration panel layout layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5"></path><path d="m14.3 19.6 1-.4"></path><path d="M15 3v7.5"></path><path d="m15.2 16.9-.9-.3"></path><path d="m16.6 21.7.3-.9"></path><path d="m16.8 15.3-.4-1"></path><path d="m19.1 15.2.3-.9"></path><path d="m19.6 21.7-.4-1"></path><path d="m20.7 16.8 1-.4"></path><path d="m21.7 19.4-.9-.3"></path><path d="M9 3v18"></path><circle cx="18" cy="18" r="3"></circle></svg><span>Columns3Cog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Columns3.html" title="Columns3 lines list queue preview parallel series split vertical horizontal thirds triple center middle alignment even sidebars drawers gutters fold reflow typography pagination pages layout design text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 3v18"></path><path d="M15 3v18"></path></svg><span>Columns3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Columns4.html" title="Columns4 lines list queue preview parallel series split vertical horizontal thirds triple center middle alignment even sidebars drawers gutters fold reflow typography pagination pages prison jail bars sentence police cops cell crime criminal justice law enforcement grill layout design text security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7.5 3v18"></path><path d="M12 3v18"></path><path d="M16.5 3v18"></path></svg><span>Columns4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Combine.html" title="Combine cubes packages parts units collection cluster combine gather merge development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"></path><path d="M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"></path><path d="m7 15 3 3"></path><path d="m7 21 3-3H5a2 2 0 0 1-2-2v-2"></path><rect height="7" rx="1" width="7" x="14" y="14"></rect><rect height="7" rx="1" width="7" x="3" y="3"></rect></svg><span>Combine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Command.html" title="Command keyboard key mac cmd button development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"></path></svg><span>Command</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Compass.html" title="Compass direction north east south west safari browser navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z"></path></svg><span>Compass</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Component.html" title="Component design element group module part symbol design development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"></path><path d="M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z"></path><path d="M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z"></path><path d="M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"></path></svg><span>Component</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Computer.html" title="Computer pc chassis codespaces github devices development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="2" width="14" x="5" y="2"></rect><rect height="8" rx="2" width="20" x="2" y="14"></rect><path d="M6 18h2"></path><path d="M12 18h6"></path></svg><span>Computer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ConciergeBell.html" title="ConciergeBell reception bell porter travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z"></path><path d="M20 16a8 8 0 1 0-16 0"></path><path d="M12 4v4"></path><path d="M10 4h4"></path></svg><span>ConciergeBell</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cone.html" title="Cone conical triangle triangular geometry filter funnel hopper spotlight searchlight shapes math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98"></path><ellipse cx="12" cy="19" rx="9" ry="3"></ellipse></svg><span>Cone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Construction.html" title="Construction roadwork maintenance blockade barricade development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="1" width="20" x="2" y="6"></rect><path d="M17 14v7"></path><path d="M7 14v7"></path><path d="M17 3v3"></path><path d="M7 3v3"></path><path d="M10 14 2.3 6.3"></path><path d="m14 6 7.7 7.7"></path><path d="m8 6 8 8"></path></svg><span>Construction</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ContactRound.html" title="ContactRound user person family friend acquaintance listing networking account connectivity communication social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 2v2"></path><path d="M17.915 22a6 6 0 0 0-12 0"></path><path d="M8 2v2"></path><circle cx="12" cy="12" r="4"></circle><rect height="18" rx="2" width="18" x="3" y="4"></rect></svg><span>ContactRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Contact.html" title="Contact user person family friend acquaintance listing networking account connectivity communication social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 2v2"></path><path d="M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"></path><path d="M8 2v2"></path><circle cx="12" cy="11" r="3"></circle><rect height="18" rx="2" width="18" x="3" y="4"></rect></svg><span>Contact</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Container.html" title="Container storage shipping freight supply chain docker environment devops code coding development transportation mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"></path><path d="M10 21.9V14L2.1 9.1"></path><path d="m10 14 11.9-6.9"></path><path d="M14 19.8v-8.1"></path><path d="M18 17.5V9.4"></path></svg><span>Container</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Contrast.html" title="Contrast display accessibility photography accessibility design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 18a6 6 0 0 0 0-12v12z"></path></svg><span>Contrast</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cookie.html" title="Cookie biscuit privacy legal food account food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"></path><path d="M8.5 8.5v.01"></path><path d="M16 15.5v.01"></path><path d="M12 12v.01"></path><path d="M11 17v.01"></path><path d="M7 14v.01"></path></svg><span>Cookie</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CookingPot.html" title="CookingPot pod cooking recipe food kitchen chef restaurant dinner lunch breakfast meal eat food-beverage home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12h20"></path><path d="M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"></path><path d="m4 8 16-4"></path><path d="m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8"></path></svg><span>CookingPot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CopyCheck.html" title="CopyCheck clone duplicate done multiple text notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 15 2 2 4-4"></path><rect height="14" rx="2" ry="2" width="14" x="8" y="8"></rect><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path></svg><span>CopyCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CopyMinus.html" title="CopyMinus clone duplicate remove delete collapse subtract multiple - text math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" x2="18" y1="15" y2="15"></line><rect height="14" rx="2" ry="2" width="14" x="8" y="8"></rect><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path></svg><span>CopyMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CopyPlus.html" title="CopyPlus clone duplicate add multiple expand + text math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="15" x2="15" y1="12" y2="18"></line><line x1="12" x2="18" y1="15" y2="15"></line><rect height="14" rx="2" ry="2" width="14" x="8" y="8"></rect><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path></svg><span>CopyPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CopySlash.html" title="CopySlash clone duplicate cancel ban no stop forbidden prohibited error multiple divide division split or / text development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" x2="18" y1="18" y2="12"></line><rect height="14" rx="2" ry="2" width="14" x="8" y="8"></rect><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path></svg><span>CopySlash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CopyX.html" title="CopyX cancel close delete remove clear multiple multiply multiplication times notifications math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" x2="18" y1="12" y2="18"></line><line x1="12" x2="18" y1="18" y2="12"></line><rect height="14" rx="2" ry="2" width="14" x="8" y="8"></rect><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path></svg><span>CopyX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Copy.html" title="Copy clone duplicate multiple text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" ry="2" width="14" x="8" y="8"></rect><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"></path></svg><span>Copy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Copyleft.html" title="Copyleft licence text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M9.17 14.83a4 4 0 1 0 0-5.66"></path></svg><span>Copyleft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Copyright.html" title="Copyright licence license text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M14.83 14.83a4 4 0 1 1 0-5.66"></path></svg><span>Copyright</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerDownLeft.html" title="CornerDownLeft arrow return arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 4v7a4 4 0 0 1-4 4H4"></path><path d="m9 10-5 5 5 5"></path></svg><span>CornerDownLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerDownRight.html" title="CornerDownRight arrow indent tab arrows text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 10 5 5-5 5"></path><path d="M4 4v7a4 4 0 0 0 4 4h12"></path></svg><span>CornerDownRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerLeftDown.html" title="CornerLeftDown arrow arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 15-5 5-5-5"></path><path d="M20 4h-7a4 4 0 0 0-4 4v12"></path></svg><span>CornerLeftDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerLeftUp.html" title="CornerLeftUp arrow arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9 9 4 4 9"></path><path d="M20 20h-7a4 4 0 0 1-4-4V4"></path></svg><span>CornerLeftUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerRightDown.html" title="CornerRightDown arrow arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 15 5 5 5-5"></path><path d="M4 4h7a4 4 0 0 1 4 4v12"></path></svg><span>CornerRightDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerRightUp.html" title="CornerRightUp arrow arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 9 5-5 5 5"></path><path d="M4 20h7a4 4 0 0 0 4-4V4"></path></svg><span>CornerRightUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerUpLeft.html" title="CornerUpLeft arrow arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20v-7a4 4 0 0 0-4-4H4"></path><path d="M9 14 4 9l5-5"></path></svg><span>CornerUpLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CornerUpRight.html" title="CornerUpRight arrow arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 14 5-5-5-5"></path><path d="M4 20v-7a4 4 0 0 1 4-4h12"></path></svg><span>CornerUpRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cpu.html" title="Cpu processor cores technology computer chip circuit memory ram specs gigahertz ghz devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20v2"></path><path d="M12 2v2"></path><path d="M17 20v2"></path><path d="M17 2v2"></path><path d="M2 12h2"></path><path d="M2 17h2"></path><path d="M2 7h2"></path><path d="M20 12h2"></path><path d="M20 17h2"></path><path d="M20 7h2"></path><path d="M7 20v2"></path><path d="M7 2v2"></path><rect height="16" rx="2" width="16" x="4" y="4"></rect><rect height="8" rx="1" width="8" x="8" y="8"></rect></svg><span>Cpu</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CreativeCommons.html" title="CreativeCommons licence license text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"></path><path d="M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"></path></svg><span>CreativeCommons</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CreditCard.html" title="CreditCard bank purchase payment cc account finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="20" x="2" y="5"></rect><line x1="2" x2="22" y1="10" y2="10"></line></svg><span>CreditCard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Croissant.html" title="Croissant bakery cooking food pastry food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487"></path><path d="M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132"></path><path d="M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42"></path><path d="M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14"></path><path d="M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676"></path></svg><span>Croissant</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Crop.html" title="Crop photo image photography design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2v14a2 2 0 0 0 2 2h14"></path><path d="M18 22V8a2 2 0 0 0-2-2H2"></path></svg><span>Crop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cross.html" title="Cross healthcare first aid shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z"></path></svg><span>Cross</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Crosshair.html" title="Crosshair aim target photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="22" x2="18" y1="12" y2="12"></line><line x1="6" x2="2" y1="12" y2="12"></line><line x1="12" x2="12" y1="6" y2="2"></line><line x1="12" x2="12" y1="22" y2="18"></line></svg><span>Crosshair</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Crown.html" title="Crown diadem tiara circlet corona king ruler winner favourite gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z"></path><path d="M5 21h14"></path></svg><span>Crown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cuboid.html" title="Cuboid brick block box 3d solid volume container storage shipping carton geometry rectangular hexahedron butter tofu soap cheese package parcel crate shapes math food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 22v-8"></path><path d="M2.336 8.89 10 14l11.715-7.029"></path><path d="M22 14a2 2 0 0 1-.971 1.715l-10 6a2 2 0 0 1-2.138-.05l-6-4A2 2 0 0 1 2 16v-6a2 2 0 0 1 .971-1.715l10-6a2 2 0 0 1 2.138.05l6 4A2 2 0 0 1 22 8z"></path></svg><span>Cuboid</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.CupSoda.html" title="CupSoda beverage cup drink soda straw water food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"></path><path d="M5 8h14"></path><path d="M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"></path><path d="m12 8 1-6h2"></path></svg><span>CupSoda</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Currency.html" title="Currency finance money finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="8"></circle><line x1="3" x2="6" y1="3" y2="6"></line><line x1="21" x2="18" y1="3" y2="6"></line><line x1="3" x2="6" y1="21" y2="18"></line><line x1="21" x2="18" y1="21" y2="18"></line></svg><span>Currency</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Cylinder.html" title="Cylinder shape elliptical geometry container storage tin pot shapes design math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M3 5v14a9 3 0 0 0 18 0V5"></path></svg><span>Cylinder</span></a>
</div>
<h3>D</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Dam.html" title="Dam electricity energy water buildings sustainability navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"></path><path d="M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"></path><path d="M2 10h4"></path><path d="M2 14h4"></path><path d="M2 18h4"></path><path d="M2 6h4"></path><path d="M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z"></path></svg><span>Dam</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DatabaseBackup.html" title="DatabaseBackup storage memory bytes servers backup timemachine rotate arrow left devices arrows design development photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M3 12a9 3 0 0 0 5 2.69"></path><path d="M21 9.3V5"></path><path d="M3 5v14a9 3 0 0 0 6.47 2.88"></path><path d="M12 12v4h4"></path><path d="M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16"></path></svg><span>DatabaseBackup</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DatabaseSearch.html" title="DatabaseSearch storage memory container tin pot bytes servers devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.693V5"></path><path d="m22 22-1.875-1.875"></path><path d="M3 12a9 3 0 0 0 8.697 2.998"></path><path d="M3 5v14a9 3 0 0 0 9.28 2.999"></path><circle cx="18" cy="18" r="3"></circle><ellipse cx="12" cy="5" rx="9" ry="3"></ellipse></svg><span>DatabaseSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DatabaseZap.html" title="DatabaseZap cache busting storage memory bytes servers power crash devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M3 5V19A9 3 0 0 0 15 21.84"></path><path d="M21 5V8"></path><path d="M21 12L18 17H22L19 22"></path><path d="M3 12A9 3 0 0 0 14.59 14.87"></path></svg><span>DatabaseZap</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Database.html" title="Database storage memory container tin pot bytes servers devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M3 5V19A9 3 0 0 0 21 19V5"></path><path d="M3 12A9 3 0 0 0 21 12"></path></svg><span>Database</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DecimalsArrowLeft.html" title="DecimalsArrowLeft numerical decimal decrease less fewer precision rounding digits fraction float number design text arrows math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m13 21-3-3 3-3"></path><path d="M20 18H10"></path><path d="M3 11h.01"></path><rect height="8" rx="2.5" width="5" x="6" y="3"></rect></svg><span>DecimalsArrowLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DecimalsArrowRight.html" title="DecimalsArrowRight numerical decimal increase more precision rounding digits fraction float number design text arrows math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 18h10"></path><path d="m17 21 3-3-3-3"></path><path d="M3 11h.01"></path><rect height="8" rx="2.5" width="5" x="15" y="3"></rect><rect height="8" rx="2.5" width="5" x="6" y="3"></rect></svg><span>DecimalsArrowRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Delete.html" title="Delete backspace remove text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"></path><path d="m12 9 6 6"></path><path d="m18 9-6 6"></path></svg><span>Delete</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dessert.html" title="Dessert pudding christmas xmas custard iced bun icing fondant cake ice cream gelato sundae scoop dollop sugar food sweet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826"></path><path d="M20.804 14.869a9 9 0 0 1-17.608 0"></path><circle cx="12" cy="4" r="2"></circle></svg><span>Dessert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Diameter.html" title="Diameter shape circle geometry trigonometry width height size calculate measure shapes math design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="19" cy="19" r="2"></circle><circle cx="5" cy="5" r="2"></circle><path d="M6.48 3.66a10 10 0 0 1 13.86 13.86"></path><path d="m6.41 6.41 11.18 11.18"></path><path d="M3.66 6.48a10 10 0 0 0 13.86 13.86"></path></svg><span>Diameter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DiamondMinus.html" title="DiamondMinus keyframe subtract remove decrease reduce calculator button keyboard line divider separator horizontal rule hr html markup markdown --- toolbar operator code coding minimum downgrade multimedia photography tools devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"></path><path d="M8 12h8"></path></svg><span>DiamondMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DiamondPercent.html" title="DiamondPercent verified unverified sale discount offer marketing sticker price tag social finance shopping math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z"></path><path d="M9.2 9.2h.01"></path><path d="m14.5 9.5-5 5"></path><path d="M14.7 14.8h.01"></path></svg><span>DiamondPercent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DiamondPlus.html" title="DiamondPlus keyframe add new increase increment positive calculate toolbar crosshair aim target scope sight reticule maximum upgrade extra + multimedia photography tools devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 8v8"></path><path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"></path><path d="M8 12h8"></path></svg><span>DiamondPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Diamond.html" title="Diamond square rectangle oblique rhombus shape suit playing cards shapes gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z"></path></svg><span>Diamond</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dice1.html" title="Dice1 dice random tabletop 1 board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M12 12h.01"></path></svg><span>Dice1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dice2.html" title="Dice2 dice random tabletop 2 board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M15 9h.01"></path><path d="M9 15h.01"></path></svg><span>Dice2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dice3.html" title="Dice3 dice random tabletop 3 board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M16 8h.01"></path><path d="M12 12h.01"></path><path d="M8 16h.01"></path></svg><span>Dice3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dice4.html" title="Dice4 dice random tabletop 4 board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M16 8h.01"></path><path d="M8 8h.01"></path><path d="M8 16h.01"></path><path d="M16 16h.01"></path></svg><span>Dice4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dice5.html" title="Dice5 dice random tabletop 5 board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M16 8h.01"></path><path d="M8 8h.01"></path><path d="M8 16h.01"></path><path d="M16 16h.01"></path><path d="M12 12h.01"></path></svg><span>Dice5</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dice6.html" title="Dice6 dice random tabletop 6 board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M16 8h.01"></path><path d="M16 12h.01"></path><path d="M16 16h.01"></path><path d="M8 8h.01"></path><path d="M8 12h.01"></path><path d="M8 16h.01"></path></svg><span>Dice6</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dices.html" title="Dices dice random tabletop board game gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="2" ry="2" width="12" x="2" y="10"></rect><path d="m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"></path><path d="M6 18h.01"></path><path d="M10 14h.01"></path><path d="M15 6h.01"></path><path d="M18 9h.01"></path></svg><span>Dices</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Diff.html" title="Diff patch difference compare plus minus plus-minus math development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v14"></path><path d="M5 10h14"></path><path d="M5 21h14"></path></svg><span>Diff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Disc2.html" title="Disc2 album music vinyl record cd dvd format dj spin rotate rpm devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><path d="M12 12h.01"></path></svg><span>Disc2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Disc3.html" title="Disc3 album music vinyl record cd dvd format dj spin rotate rpm devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M6 12c0-1.7.7-3.2 1.8-4.2"></path><circle cx="12" cy="12" r="2"></circle><path d="M18 12c0 1.7-.7 3.2-1.8 4.2"></path></svg><span>Disc3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DiscAlbum.html" title="DiscAlbum album music songs format cd dvd vinyl sleeve cover platinum compilation ep recording playback spin rotate rpm dj devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><circle cx="12" cy="12" r="5"></circle><path d="M12 12h.01"></path></svg><span>DiscAlbum</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Disc.html" title="Disc album music songs format cd dvd vinyl sleeve cover platinum compilation ep recording playback spin rotate rpm dj devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="2"></circle></svg><span>Disc</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Divide.html" title="Divide calculate math division operator code ÷ / math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="6" r="1"></circle><line x1="5" x2="19" y1="12" y2="12"></line><circle cx="12" cy="18" r="1"></circle></svg><span>Divide</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DnaOff.html" title="DnaOff gene gmo free helix heredity chromosome nucleic acid medical food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8"></path><path d="m17 6-2.891-2.891"></path><path d="M2 15c3.333-3 6.667-3 10-3"></path><path d="m2 2 20 20"></path><path d="m20 9 .891.891"></path><path d="M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1"></path><path d="M3.109 14.109 4 15"></path><path d="m6.5 12.5 1 1"></path><path d="m7 18 2.891 2.891"></path><path d="M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16"></path></svg><span>DnaOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dna.html" title="Dna gene gmo helix heredity chromosome nucleic acid medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 16 1.5 1.5"></path><path d="m14 8-1.5-1.5"></path><path d="M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"></path><path d="m16.5 10.5 1 1"></path><path d="m17 6-2.891-2.891"></path><path d="M2 15c6.667-6 13.333 0 20-6"></path><path d="m20 9 .891.891"></path><path d="M3.109 14.109 4 15"></path><path d="m6.5 12.5 1 1"></path><path d="m7 18 2.891 2.891"></path><path d="M9 22c1.798-1.998 2.518-3.995 2.807-5.993"></path></svg><span>Dna</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dock.html" title="Dock desktop applications launch home menu bar bottom line macos osx layout design development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 8h20"></path><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M6 16h12"></path></svg><span>Dock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dog.html" title="Dog animal pet puppy hound canine animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.25 16.25h1.5L12 17z"></path><path d="M16 14v.5"></path><path d="M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309"></path><path d="M8 14v.5"></path><path d="M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"></path></svg><span>Dog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DollarSign.html" title="DollarSign currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" x2="12" y1="2" y2="22"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path></svg><span>DollarSign</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Donut.html" title="Donut doughnut sprinkles topping fast food junk food snack treat sweet sugar dessert hollow ring food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3"></path><circle cx="12" cy="12" r="3"></circle></svg><span>Donut</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DoorClosedLocked.html" title="DoorClosedLocked entrance entry exit ingress egress gate gateway emergency exit lock home travel security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12h.01"></path><path d="M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"></path><path d="M2 20h8"></path><path d="M20 17v-2a2 2 0 1 0-4 0v2"></path><rect height="5" rx="1" width="8" x="14" y="17"></rect></svg><span>DoorClosedLocked</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DoorClosed.html" title="DoorClosed entrance entry exit ingress egress gate gateway emergency exit home travel security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12h.01"></path><path d="M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"></path><path d="M2 20h20"></path></svg><span>DoorClosed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DoorOpen.html" title="DoorOpen entrance entry exit ingress egress gate gateway emergency exit home travel security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 20H2"></path><path d="M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"></path><path d="M11 4H8a2 2 0 0 0-2 2v14"></path><path d="M14 12h.01"></path><path d="M22 20h-3"></path></svg><span>DoorOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dot.html" title="Dot interpunct interpoint middot step punctuation period full stop end finish final characters font typography type center . shapes text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12.1" cy="12.1" r="1"></circle></svg><span>Dot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Download.html" title="Download import export save arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 15V3"></path><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><path d="m7 10 5 5 5-5"></path></svg><span>Download</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DraftingCompass.html" title="DraftingCompass geometry trigonometry radius diameter circumference calculate measure arc curve draw sketch math design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12.99 6.74 1.93 3.44"></path><path d="M19.136 12a10 10 0 0 1-14.271 0"></path><path d="m21 21-2.16-3.84"></path><path d="m3 21 8.02-14.26"></path><circle cx="12" cy="5" r="2"></circle></svg><span>DraftingCompass</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Drama.html" title="Drama drama masks theater theatre entertainment show multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 11h.01"></path><path d="M14 6h.01"></path><path d="M18 6h.01"></path><path d="M6.5 13.1h.01"></path><path d="M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"></path><path d="M17.4 9.9c-.8.8-2 .8-2.8 0"></path><path d="M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"></path><path d="M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"></path></svg><span>Drama</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Drill.html" title="Drill power bit head hole diy toolbox build construction tools home devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"></path><path d="M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"></path><path d="M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"></path><path d="M18 6h4"></path><path d="m5 10-2 8"></path><path d="m7 18 2-8"></path></svg><span>Drill</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Drone.html" title="Drone quadcopter uav aerial flight flying technology airborne robotics transportation devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10 7 7"></path><path d="m10 14-3 3"></path><path d="m14 10 3-3"></path><path d="m14 14 3 3"></path><path d="M14.205 4.139a4 4 0 1 1 5.439 5.863"></path><path d="M19.637 14a4 4 0 1 1-5.432 5.868"></path><path d="M4.367 10a4 4 0 1 1 5.438-5.862"></path><path d="M9.795 19.862a4 4 0 1 1-5.429-5.873"></path><rect height="8" rx="1" width="4" x="10" y="8"></rect></svg><span>Drone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.DropletOff.html" title="DropletOff water weather liquid fluid wet moisture damp bead globule weather gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"></path><path d="m2 2 20 20"></path><path d="M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"></path></svg><span>DropletOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Droplet.html" title="Droplet water weather liquid fluid wet moisture damp bead globule weather gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"></path></svg><span>Droplet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Droplets.html" title="Droplets water weather liquid fluid wet moisture damp bead globule weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"></path><path d="M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"></path></svg><span>Droplets</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Drum.html" title="Drum drummer kit sticks instrument beat bang bass backing track band play performance concert march music audio sound noise loud multimedia devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 2 8 8"></path><path d="m22 2-8 8"></path><ellipse cx="12" cy="9" rx="10" ry="5"></ellipse><path d="M7 13.4v7.9"></path><path d="M12 14v8"></path><path d="M17 13.4v7.9"></path><path d="M2 9v8a10 5 0 0 0 20 0V9"></path></svg><span>Drum</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Drumstick.html" title="Drumstick food chicken meat food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"></path><path d="m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"></path></svg><span>Drumstick</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Dumbbell.html" title="Dumbbell barbell weight workout gym navigation sports"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z"></path><path d="m2.5 21.5 1.4-1.4"></path><path d="m20.1 3.9 1.4-1.4"></path><path d="M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z"></path><path d="m9.6 14.4 4.8-4.8"></path></svg><span>Dumbbell</span></a>
</div>
<h3>E</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.EarOff.html" title="EarOff hearing hard of hearing hearing loss deafness noise silence audio accessibility medical accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"></path><path d="M6 8.5c0-.75.13-1.47.36-2.14"></path><path d="M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"></path><path d="M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>EarOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ear.html" title="Ear hearing noise audio accessibility medical accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"></path><path d="M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"></path></svg><span>Ear</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EarthLock.html" title="EarthLock vpn private privacy network world browser security encryption protection connection security development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 3.34V5a3 3 0 0 0 3 3"></path><path d="M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"></path><path d="M21.54 15H17a2 2 0 0 0-2 2v4.54"></path><path d="M12 2a10 10 0 1 0 9.54 13"></path><path d="M20 6V4a2 2 0 1 0-4 0v2"></path><rect height="5" rx="1" width="8" x="14" y="6"></rect></svg><span>EarthLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Earth.html" title="Earth world browser language translate globe navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.54 15H17a2 2 0 0 0-2 2v4.54"></path><path d="M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"></path><path d="M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"></path><circle cx="12" cy="12" r="10"></circle></svg><span>Earth</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Eclipse.html" title="Eclipse lunar solar crescent moon sun earth day night planet space mode dark light toggle switch color css styles display accessibility contrast brightness blend shade science design development accessibility photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a7 7 0 1 0 10 10"></path></svg><span>Eclipse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EggFried.html" title="EggFried food breakfast food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11.5" cy="12.5" r="3.5"></circle><path d="M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"></path></svg><span>EggFried</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EggOff.html" title="EggOff egg free vegan hatched bad egg food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 2 20 20"></path><path d="M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19"></path><path d="M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568"></path></svg><span>EggOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Egg.html" title="Egg bird chicken nest hatch shell incubate soft boiled hard breakfast brunch morning easter food-beverage animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"></path></svg><span>Egg</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ellipse.html" title="Ellipse shape geometry rounded smooth outline form boundary curve shapes ellipse oval shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="12" rx="10" ry="6"></ellipse></svg><span>Ellipse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EllipsisVertical.html" title="EllipsisVertical menu options spread more further extra overflow dots … ... layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="1"></circle><circle cx="12" cy="5" r="1"></circle><circle cx="12" cy="19" r="1"></circle></svg><span>EllipsisVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ellipsis.html" title="Ellipsis et cetera etc loader loading progress pending throbber menu options operator code coding spread rest more further extra overflow dots … ... layout development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg><span>Ellipsis</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EqualApproximately.html" title="EqualApproximately about calculate math operater math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"></path><path d="M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"></path></svg><span>EqualApproximately</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EqualNot.html" title="EqualNot calculate off math operator code ≠ math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" x2="19" y1="9" y2="9"></line><line x1="5" x2="19" y1="15" y2="15"></line><line x1="19" x2="5" y1="5" y2="19"></line></svg><span>EqualNot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Equal.html" title="Equal calculate math operator assignment code = math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" x2="19" y1="9" y2="9"></line><line x1="5" x2="19" y1="15" y2="15"></line></svg><span>Equal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Eraser.html" title="Eraser pencil drawing undo delete clear trash remove text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21"></path><path d="m5.082 11.09 8.828 8.828"></path></svg><span>Eraser</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EthernetPort.html" title="EthernetPort internet network connection cable lan port router switch hub modem web online networking communication socket plug slot controller connector interface console signal data input output communication devices multimedia gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z"></path><path d="M6 8v1"></path><path d="M10 8v1"></path><path d="M14 8v1"></path><path d="M18 8v1"></path></svg><span>EthernetPort</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Euro.html" title="Euro currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10h12"></path><path d="M4 14h9"></path><path d="M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"></path></svg><span>Euro</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EvCharger.html" title="EvCharger electric charger station vehicle fast plug ev power electricity energy accumulator charge transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"></path><path d="M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"></path><path d="M2 21h13"></path><path d="M3 7h11"></path><path d="m9 11-2 3h3l-2 3"></path></svg><span>EvCharger</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Expand.html" title="Expand scale fullscreen maximize minimize contract text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 15 6 6"></path><path d="m15 9 6-6"></path><path d="M21 16v5h-5"></path><path d="M21 8V3h-5"></path><path d="M3 16v5h5"></path><path d="m3 21 6-6"></path><path d="M3 8V3h5"></path><path d="M9 9 3 3"></path></svg><span>Expand</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ExternalLink.html" title="ExternalLink outbound open share arrows text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h6v6"></path><path d="M10 14 21 3"></path><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path></svg><span>ExternalLink</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EyeClosed.html" title="EyeClosed view watch see hide conceal mask hidden visibility vision accessibility photography design security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 18-.722-3.25"></path><path d="M2 8a10.645 10.645 0 0 0 20 0"></path><path d="m20 15-1.726-2.05"></path><path d="m4 15 1.726-2.05"></path><path d="m9 18 .722-3.25"></path></svg><span>EyeClosed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.EyeOff.html" title="EyeOff view watch see hide conceal mask hidden visibility vision accessibility photography design security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"></path><path d="M14.084 14.158a3 3 0 0 1-4.242-4.242"></path><path d="M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"></path><path d="m2 2 20 20"></path></svg><span>EyeOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Eye.html" title="Eye view watch see show expose reveal display visible visibility vision preview read accessibility photography design security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"></path><circle cx="12" cy="12" r="3"></circle></svg><span>Eye</span></a>
</div>
<h3>F</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Factory.html" title="Factory building business energy industry manufacture sector buildings navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 16h.01"></path><path d="M16 16h.01"></path><path d="M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"></path><path d="M8 16h.01"></path></svg><span>Factory</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Fan.html" title="Fan air cooler ventilation ventilator blower home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"></path><path d="M12 12v.01"></path></svg><span>Fan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FastForward.html" title="FastForward music multimedia arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z"></path><path d="M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z"></path></svg><span>FastForward</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Feather.html" title="Feather logo gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z"></path><path d="M16 8 2 22"></path><path d="M17.5 15H9"></path></svg><span>Feather</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Fence.html" title="Fence picket panels woodwork diy materials suburban garden property territory home buildings"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"></path><path d="M6 8h4"></path><path d="M6 18h4"></path><path d="m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"></path><path d="M14 8h4"></path><path d="M14 18h4"></path><path d="m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"></path></svg><span>Fence</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FerrisWheel.html" title="FerrisWheel big wheel daisy wheel observation attraction entertainment amusement park theme park funfair navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="2"></circle><path d="M12 2v4"></path><path d="m6.8 15-3.5 2"></path><path d="m20.7 7-3.5 2"></path><path d="M6.8 9 3.3 7"></path><path d="m20.7 17-3.5-2"></path><path d="m9 22 3-8 3 8"></path><path d="M8 22h8"></path><path d="M18 18.7a9 9 0 1 0-12 0"></path></svg><span>FerrisWheel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileArchive.html" title="FileArchive zip package archive files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 12v-1"></path><path d="M8 18v-2"></path><path d="M8 7V6"></path><circle cx="8" cy="20" r="2"></circle></svg><span>FileArchive</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileAxis3d.html" title="FileAxis3d model 3d axis coordinates design files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m8 18 4-4"></path><path d="M8 10v8h8"></path></svg><span>FileAxis3d</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileBadge.html" title="FileBadge award achievement badge rosette prize winner files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.3"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m7.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.879.001l-1.846.85a.5.5 0 0 1-.692-.593l1.29-4.88"></path><circle cx="6" cy="14" r="3"></circle></svg><span>FileBadge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileBox.html" title="FileBox box package model files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.5 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.8"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M11.7 14.2 7 17l-4.7-2.8"></path><path d="M3 13.1a2 2 0 0 0-.999 1.76v3.24a2 2 0 0 0 .969 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01z"></path><path d="M7 17v5"></path></svg><span>FileBox</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileBracesCorner.html" title="FileBracesCorner code json curly braces curly brackets files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 22h4a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M5 14a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1 1 1 0 0 1 1 1v2a1 1 0 0 0 1 1"></path><path d="M9 22a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-2a1 1 0 0 0-1-1"></path></svg><span>FileBracesCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileBraces.html" title="FileBraces code json curly braces curly brackets files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"></path><path d="M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"></path></svg><span>FileBraces</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileChartColumnIncreasing.html" title="FileChartColumnIncreasing statistics analytics diagram graph presentation trending up files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 18v-2"></path><path d="M12 18v-4"></path><path d="M16 18v-6"></path></svg><span>FileChartColumnIncreasing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileChartColumn.html" title="FileChartColumn statistics analytics diagram graph presentation files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 18v-1"></path><path d="M12 18v-6"></path><path d="M16 18v-3"></path></svg><span>FileChartColumn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileChartLine.html" title="FileChartLine statistics analytics diagram graph presentation files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m16 13-3.5 3.5-2-2L8 17"></path></svg><span>FileChartLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileChartPie.html" title="FileChartPie statistics analytics diagram graph presentation files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.941 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.512"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M4.017 11.512a6 6 0 1 0 8.466 8.475"></path><path d="M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z"></path></svg><span>FileChartPie</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileCheckCorner.html" title="FileCheckCorner done document todo tick complete task files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v6"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m14 20 2 2 4-4"></path></svg><span>FileCheckCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileCheck.html" title="FileCheck done document todo tick complete task files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m9 15 2 2 4-4"></path></svg><span>FileCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileClock.html" title="FileClock history log clock files time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 22h2a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v2.85"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 14v2.2l1.6 1"></path><circle cx="8" cy="16" r="6"></circle></svg><span>FileClock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileCodeCorner.html" title="FileCodeCorner script document html xml property list plist files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.15V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3.35"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m5 16-3 3 3 3"></path><path d="m9 22 3-3-3-3"></path></svg><span>FileCodeCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileCode.html" title="FileCode script document gist html xml property list plist files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10 12.5 8 15l2 2.5"></path><path d="m14 12.5 2 2.5-2 2.5"></path></svg><span>FileCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileCog.html" title="FileCog executable settings cog edit gear files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 8a1 1 0 0 1-1-1V2a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8z"></path><path d="M20 8v12a2 2 0 0 1-2 2h-4.182"></path><path d="m3.305 19.53.923-.382"></path><path d="M4 10.592V4a2 2 0 0 1 2-2h8"></path><path d="m4.228 16.852-.924-.383"></path><path d="m5.852 15.228-.383-.923"></path><path d="m5.852 20.772-.383.924"></path><path d="m8.148 15.228.383-.923"></path><path d="m8.53 21.696-.382-.924"></path><path d="m9.773 16.852.922-.383"></path><path d="m9.773 19.148.922.383"></path><circle cx="7" cy="18" r="3"></circle></svg><span>FileCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileDiff.html" title="FileDiff diff patch files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M9 10h6"></path><path d="M12 13V7"></path><path d="M9 17h6"></path></svg><span>FileDiff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileDigit.html" title="FileDigit number document files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10 16h2v6"></path><path d="M10 22h4"></path><rect height="6" rx="2" width="4" x="2" y="16"></rect></svg><span>FileDigit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileDown.html" title="FileDown download import export files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M12 18v-6"></path><path d="m9 15 3 3 3-3"></path></svg><span>FileDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileExclamationPoint.html" title="FileExclamationPoint hidden warning alert danger protected exclamation mark files notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M12 9v4"></path><path d="M12 17h.01"></path></svg><span>FileExclamationPoint</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileHeadphone.html" title="FileHeadphone music audio sound headphones files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 6.835V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0"></path></svg><span>FileHeadphone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileHeart.html" title="FileHeart heart favourite bookmark quick link files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v7"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M3.62 18.8A2.25 2.25 0 1 1 7 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a1 1 0 0 1-1.507 0z"></path></svg><span>FileHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileImage.html" title="FileImage image graphics photo picture files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><circle cx="10" cy="12" r="2"></circle><path d="m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22"></path></svg><span>FileImage</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileInput.html" title="FileInput document files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M2 15h10"></path><path d="m9 18 3-3-3-3"></path></svg><span>FileInput</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileKey.html" title="FileKey key private public security files security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M4 12v6"></path><path d="M4 14h2"></path><path d="M9.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v4"></path><circle cx="4" cy="20" r="2"></circle></svg><span>FileKey</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileLock.html" title="FileLock lock password security files security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M9 17v-2a2 2 0 0 0-4 0v2"></path><rect height="5" rx="1" width="8" x="3" y="17"></rect></svg><span>FileLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileMinusCorner.html" title="FileMinusCorner document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 14V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M14 18h6"></path></svg><span>FileMinusCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileMinus.html" title="FileMinus delete remove erase document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M9 15h6"></path></svg><span>FileMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileMusic.html" title="FileMusic audio sound noise track digital recording playback piano keyboard keys notes chord midi octave files multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.35"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 20v-7l3 1.474"></path><circle cx="6" cy="20" r="2"></circle></svg><span>FileMusic</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileOutput.html" title="FileOutput document files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m5 11-3 3"></path><path d="m5 17-3-3h10"></path></svg><span>FileOutput</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FilePenLine.html" title="FilePenLine edit files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.364 13.634a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506l4.013-4.009a1 1 0 0 0-3.004-3.004z"></path><path d="M14.487 7.858A1 1 0 0 1 14 7V2"></path><path d="M20 19.645V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l2.516 2.516"></path><path d="M8 18h1"></path></svg><span>FilePenLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FilePen.html" title="FilePen signature files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10.378 12.622a1 1 0 0 1 3 3.003L8.36 20.637a2 2 0 0 1-.854.506l-2.867.837a.5.5 0 0 1-.62-.62l.836-2.869a2 2 0 0 1 .506-.853z"></path></svg><span>FilePen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FilePlay.html" title="FilePlay movie video film files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z"></path></svg><span>FilePlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FilePlusCorner.html" title="FilePlusCorner add create new document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5.35"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M14 19h6"></path><path d="M17 16v6"></path></svg><span>FilePlusCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FilePlus.html" title="FilePlus add create new document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M9 15h6"></path><path d="M12 18v-6"></path></svg><span>FilePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileQuestionMark.html" title="FileQuestionMark readme help question files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M12 17h.01"></path><path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"></path></svg><span>FileQuestionMark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileScan.html" title="FileScan scan code qr-code files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.35"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M16 14a2 2 0 0 0-2 2"></path><path d="M16 22a2 2 0 0 1-2-2"></path><path d="M20 14a2 2 0 0 1 2 2"></path><path d="M20 22a2 2 0 0 0 2-2"></path></svg><span>FileScan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileSearchCorner.html" title="FileSearchCorner lost document find browser lens files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.589 3.588A2.4 2.4 0 0 1 20 8v3.25"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m21 22-2.88-2.88"></path><circle cx="16" cy="17" r="3"></circle></svg><span>FileSearchCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileSearch.html" title="FileSearch lost document find browser lens files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><circle cx="11.5" cy="14.5" r="2.5"></circle><path d="M13.3 16.3 15 18"></path></svg><span>FileSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileSignal.html" title="FileSignal audio music volume files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 15h.01"></path><path d="M11.5 13.5a2.5 2.5 0 0 1 0 3"></path><path d="M15 12a5 5 0 0 1 0 6"></path></svg><span>FileSignal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileSliders.html" title="FileSliders cogged gear mechanical machinery configuration controls preferences settings system admin edit executable files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 12h8"></path><path d="M10 11v2"></path><path d="M8 17h8"></path><path d="M14 16v2"></path></svg><span>FileSliders</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileSpreadsheet.html" title="FileSpreadsheet spreadsheet sheet table files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M8 13h2"></path><path d="M14 13h2"></path><path d="M8 17h2"></path><path d="M14 17h2"></path></svg><span>FileSpreadsheet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileStack.html" title="FileStack versions multiple copy documents revisions version control history files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1"></path><path d="M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1"></path><path d="M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z"></path></svg><span>FileStack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileSymlink.html" title="FileSymlink symlink symbolic link files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m10 18 3-3-3-3"></path></svg><span>FileSymlink</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileTerminal.html" title="FileTerminal terminal bash script executable files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m8 16 2-2-2-2"></path><path d="M12 18h4"></path></svg><span>FileTerminal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileText.html" title="FileText data txt pdf document files text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg><span>FileText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileTypeCorner.html" title="FileTypeCorner font text typography type files text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16"></path><path d="M6 22h2"></path><path d="M7 14v8"></path></svg><span>FileTypeCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileType.html" title="FileType font text typography type files text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M11 18h2"></path><path d="M12 12v6"></path><path d="M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"></path></svg><span>FileType</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileUp.html" title="FileUp upload import export files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M12 12v6"></path><path d="m15 15-3-3-3 3"></path></svg><span>FileUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileUser.html" title="FileUser person personal information people listing networking document contact cover letter resume cv curriculum vitae application form account files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M16 22a4 4 0 0 0-8 0"></path><circle cx="12" cy="15" r="3"></circle></svg><span>FileUser</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileVideoCamera.html" title="FileVideoCamera movie video film files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m10 17.843 3.033-1.755a.64.64 0 0 1 .967.56v4.704a.65.65 0 0 1-.967.56L10 20.157"></path><rect height="6" rx="1" width="7" x="3" y="16"></rect></svg><span>FileVideoCamera</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileVolume.html" title="FileVolume audio music volume files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 11.55V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-1.95"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M12 15a5 5 0 0 1 0 6"></path><path d="M8 14.502a.5.5 0 0 0-.826-.381l-1.893 1.631a1 1 0 0 1-.651.243H3.5a.5.5 0 0 0-.5.501v3.006a.5.5 0 0 0 .5.501h1.129a1 1 0 0 1 .652.243l1.893 1.633a.5.5 0 0 0 .826-.38z"></path></svg><span>FileVolume</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileXCorner.html" title="FileXCorner lost delete remove document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m15 17 5 5"></path><path d="m20 17-5 5"></path></svg><span>FileXCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FileX.html" title="FileX lost delete remove document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="m14.5 12.5-5 5"></path><path d="m9.5 12.5 5 5"></path></svg><span>FileX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.File.html" title="File document files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path></svg><span>File</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Files.html" title="Files multiple copy documents files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 2h-4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"></path><path d="M16.706 2.706A2.4 2.4 0 0 0 15 2v5a1 1 0 0 0 1 1h5a2.4 2.4 0 0 0-.706-1.706z"></path><path d="M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"></path></svg><span>Files</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Film.html" title="Film movie video reel camera cinema entertainment photography multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7 3v18"></path><path d="M3 7.5h4"></path><path d="M3 12h18"></path><path d="M3 16.5h4"></path><path d="M17 3v18"></path><path d="M17 7.5h4"></path><path d="M17 16.5h4"></path></svg><span>Film</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FingerprintPattern.html" title="FingerprintPattern 2fa authentication biometric identity security account security medical devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"></path><path d="M14 13.12c0 2.38 0 6.38-1 8.88"></path><path d="M17.29 21.02c.12-.6.43-2.3.5-3.02"></path><path d="M2 12a10 10 0 0 1 18-6"></path><path d="M2 16h.01"></path><path d="M21.8 16c.2-2 .131-5.354 0-6"></path><path d="M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2"></path><path d="M8.65 22c.21-.66.45-1.32.57-2"></path><path d="M9 6.8a6 6 0 0 1 9 5.2v2"></path></svg><span>FingerprintPattern</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FireExtinguisher.html" title="FireExtinguisher flames smoke foam water spray hose firefighter fireman department brigade station emergency suppress compressed tank cylinder safety equipment amenities home tools travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5"></path><path d="M9 18h8"></path><path d="M18 3h-3"></path><path d="M11 3a6 6 0 0 0-6 6v11"></path><path d="M5 13h4"></path><path d="M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z"></path></svg><span>FireExtinguisher</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FishOff.html" title="FishOff food dish restaurant course meal seafood animal pet sea marine allergy intolerance diet food-beverage animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058"></path><path d="M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618"></path><path d="m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20"></path></svg><span>FishOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FishSymbol.html" title="FishSymbol dish restaurant course meal seafood pet sea marine food-beverage animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 16s9-15 20-4C11 23 2 8 2 8"></path></svg><span>FishSymbol</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Fish.html" title="Fish dish restaurant course meal seafood pet sea marine food-beverage animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z"></path><path d="M18 12v.5"></path><path d="M16 17.93a9.77 9.77 0 0 1 0-11.86"></path><path d="M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33"></path><path d="M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4"></path><path d="m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98"></path></svg><span>Fish</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FishingHook.html" title="FishingHook sea boating angler bait reel tackle marine outdoors fish fishing hook sports travel sports travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17.586 11.414-5.93 5.93a1 1 0 0 1-8-8l3.137-3.137a.707.707 0 0 1 1.207.5V10"></path><path d="M20.414 8.586 22 7"></path><circle cx="19" cy="10" r="2"></circle></svg><span>FishingHook</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FishingRod.html" title="FishingRod fishing rod hobby equipment reel sports travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 11h1"></path><path d="M8 15a2 2 0 0 1-4 0V3a1 1 0 0 1 1-1h.5C14 2 20 9 20 18v4"></path><circle cx="18" cy="18" r="2"></circle></svg><span>FishingRod</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlagOff.html" title="FlagOff unflag unmark report marker notification warning milestone goal notice signal attention banner account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"></path><path d="m2 2 20 20"></path><path d="M4 22V4"></path><path d="M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347"></path></svg><span>FlagOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlagTriangleLeft.html" title="FlagTriangleLeft report timeline marker pin development navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5"></path></svg><span>FlagTriangleLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlagTriangleRight.html" title="FlagTriangleRight report timeline marker pin development navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5"></path></svg><span>FlagTriangleRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Flag.html" title="Flag report marker notification warning milestone goal notice signal attention banner account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"></path></svg><span>Flag</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlameKindling.html" title="FlameKindling campfire camping wilderness outdoors lit warmth wood twigs sticks nature social gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z"></path><path d="m5 22 14-4"></path><path d="m5 18 14 4"></path></svg><span>FlameKindling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Flame.html" title="Flame heat burn light glow ignite passion ember fire lit burning spark embers smoke firefighter fireman department brigade station emergency weather social gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"></path></svg><span>Flame</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlashlightOff.html" title="FlashlightOff torch light beam emergency safety tool bright photography devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.652 6H18"></path><path d="M12 13v1"></path><path d="M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V6"></path><path d="m2 2 20 20"></path><path d="M7.649 2H17a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8a4 4 0 0 0-.55 1.007"></path></svg><span>FlashlightOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Flashlight.html" title="Flashlight torch light beam emergency safety tool bright photography devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v1"></path><path d="M17 2a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8A4 4 0 0 0 16 12v8a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V3a1 1 0 0 1 1-1z"></path><path d="M6 6h12"></path></svg><span>Flashlight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlaskConicalOff.html" title="FlaskConicalOff beaker erlenmeyer non toxic lab chemistry experiment test science gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v2.343"></path><path d="M14 2v6.343"></path><path d="m2 2 20 20"></path><path d="M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563"></path><path d="M6.453 15H15"></path><path d="M8.5 2h7"></path></svg><span>FlaskConicalOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlaskConical.html" title="FlaskConical beaker erlenmeyer lab chemistry experiment test science gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2"></path><path d="M6.453 15h11.094"></path><path d="M8.5 2h7"></path></svg><span>FlaskConical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlaskRound.html" title="FlaskRound beaker lab chemistry experiment test science gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v6.292a7 7 0 1 0 4 0V2"></path><path d="M5 15h14"></path><path d="M8.5 2h7"></path></svg><span>FlaskRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlipHorizontal2.html" title="FlipHorizontal2 reflect mirror alignment dashed design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 7 5 5-5 5V7"></path><path d="m21 7-5 5 5 5V7"></path><path d="M12 20v2"></path><path d="M12 14v2"></path><path d="M12 8v2"></path><path d="M12 2v2"></path></svg><span>FlipHorizontal2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FlipVertical2.html" title="FlipVertical2 reflect mirror alignment dashed design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 3-5 5-5-5h10"></path><path d="m17 21-5-5-5 5h10"></path><path d="M4 12H2"></path><path d="M10 12H8"></path><path d="M16 12h-2"></path><path d="M22 12h-2"></path></svg><span>FlipVertical2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Flower2.html" title="Flower2 sustainability nature plant nature sustainability seasons"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"></path><circle cx="12" cy="8" r="2"></circle><path d="M12 10v12"></path><path d="M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"></path><path d="M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"></path></svg><span>Flower2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Flower.html" title="Flower sustainability nature plant spring nature gaming sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"></circle><path d="M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"></path><path d="M12 7.5V9"></path><path d="M7.5 12H9"></path><path d="M16.5 12H15"></path><path d="M12 16.5V15"></path><path d="m8 8 1.88 1.88"></path><path d="M14.12 9.88 16 8"></path><path d="m8 16 1.88-1.88"></path><path d="M14.12 14.12 16 16"></path></svg><span>Flower</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Focus.html" title="Focus camera lens photo dashed photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"></circle><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path></svg><span>Focus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FoldHorizontal.html" title="FoldHorizontal arrow collapse fold vertical dashed arrows layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12h6"></path><path d="M22 12h-6"></path><path d="M12 2v2"></path><path d="M12 8v2"></path><path d="M12 14v2"></path><path d="M12 20v2"></path><path d="m19 9-3 3 3 3"></path><path d="m5 15 3-3-3-3"></path></svg><span>FoldHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FoldVertical.html" title="FoldVertical arrow collapse fold vertical dashed arrows layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-6"></path><path d="M12 8V2"></path><path d="M4 12H2"></path><path d="M10 12H8"></path><path d="M16 12h-2"></path><path d="M22 12h-2"></path><path d="m15 19-3-3-3 3"></path><path d="m15 5-3 3-3-3"></path></svg><span>FoldVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderArchive.html" title="FolderArchive archive zip package files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="15" cy="19" r="2"></circle><path d="M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1"></path><path d="M15 11v-1"></path><path d="M15 17v-2"></path></svg><span>FolderArchive</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderBookmark.html" title="FolderBookmark folder bookmark file mark storage archive directory project favorite save read later files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v8l3-3 3 3V6"></path><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"></path></svg><span>FolderBookmark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderCheck.html" title="FolderCheck done directory todo tick complete task files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="m9 13 2 2 4-4"></path></svg><span>FolderCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderClock.html" title="FolderClock history directory clock files time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 14v2.2l1.6 1"></path><path d="M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2"></path><circle cx="16" cy="16" r="6"></circle></svg><span>FolderClock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderClosed.html" title="FolderClosed directory closed files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="M2 10h20"></path></svg><span>FolderClosed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderCode.html" title="FolderCode directory coding develop software files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10.5 8 13l2 2.5"></path><path d="m14 10.5 2 2.5-2 2.5"></path><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"></path></svg><span>FolderCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderCog.html" title="FolderCog directory settings control preferences cog edit gear files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3"></path><path d="m14.305 19.53.923-.382"></path><path d="m15.228 16.852-.923-.383"></path><path d="m16.852 15.228-.383-.923"></path><path d="m16.852 20.772-.383.924"></path><path d="m19.148 15.228.383-.923"></path><path d="m19.53 21.696-.382-.924"></path><path d="m20.772 16.852.924-.383"></path><path d="m20.772 19.148.924.383"></path><circle cx="18" cy="18" r="3"></circle></svg><span>FolderCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderDot.html" title="FolderDot directory root project pinned active current cogged gear mechanical machinery configuration controls preferences settings system admin edit files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"></path><circle cx="12" cy="13" r="1"></circle></svg><span>FolderDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderDown.html" title="FolderDown directory download import export files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="M12 10v6"></path><path d="m15 13-3 3-3-3"></path></svg><span>FolderDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderGit2.html" title="FolderGit2 directory root project git repo files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 19a5 5 0 0 1-5-5v8"></path><path d="M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5"></path><circle cx="13" cy="12" r="2"></circle><circle cx="20" cy="19" r="2"></circle></svg><span>FolderGit2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderGit.html" title="FolderGit directory root project git repo files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="13" r="2"></circle><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="M14 13h3"></path><path d="M7 13h3"></path></svg><span>FolderGit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderHeart.html" title="FolderHeart directory heart favourite bookmark quick link files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.638 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.417"></path><path d="M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"></path></svg><span>FolderHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderInput.html" title="FolderInput directory import export files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"></path><path d="M2 13h10"></path><path d="m9 16 3-3-3-3"></path></svg><span>FolderInput</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderKanban.html" title="FolderKanban projects manage overview board tickets issues roadmap plan intentions productivity work agile code coding directory project root charts development design files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"></path><path d="M8 10v4"></path><path d="M12 10v2"></path><path d="M16 10v6"></path></svg><span>FolderKanban</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderKey.html" title="FolderKey directory key private security protected files security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.36"></path><path d="M19 12v6"></path><path d="M19 14h2"></path><circle cx="19" cy="20" r="2"></circle></svg><span>FolderKey</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderLock.html" title="FolderLock directory lock private security protected files security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="5" rx="1" width="8" x="14" y="17"></rect><path d="M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5"></path><path d="M20 17v-2a2 2 0 1 0-4 0v2"></path></svg><span>FolderLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderMinus.html" title="FolderMinus directory remove delete files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 13h6"></path><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span>FolderMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderOpenDot.html" title="FolderOpenDot directory root project active current pinned files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"></path><circle cx="14" cy="15" r="1"></circle></svg><span>FolderOpenDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderOpen.html" title="FolderOpen directory files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg><span>FolderOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderOutput.html" title="FolderOutput directory import export files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5"></path><path d="M2 13h10"></path><path d="m5 10-3 3 3 3"></path></svg><span>FolderOutput</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderPen.html" title="FolderPen directory rename files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"></path><path d="M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path></svg><span>FolderPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderPlus.html" title="FolderPlus directory add create new files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10v6"></path><path d="M9 13h6"></path><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span>FolderPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderRoot.html" title="FolderRoot directory root project git repo files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"></path><circle cx="12" cy="13" r="2"></circle><path d="M12 15v5"></path></svg><span>FolderRoot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderSearch2.html" title="FolderSearch2 directory search find lost browser lens files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11.5" cy="12.5" r="2.5"></circle><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="M13.3 14.3 15 16"></path></svg><span>FolderSearch2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderSearch.html" title="FolderSearch directory search find lost browser lens files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1"></path><path d="m21 21-1.9-1.9"></path><circle cx="17" cy="17" r="3"></circle></svg><span>FolderSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderSymlink.html" title="FolderSymlink directory symlink symbolic link files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"></path><path d="m8 16 3-3-3-3"></path></svg><span>FolderSymlink</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderSync.html" title="FolderSync directory synchronize synchronise refresh reconnect transfer backup files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5"></path><path d="M12 10v4h4"></path><path d="m12 14 1.535-1.605a5 5 0 0 1 8 1.5"></path><path d="M22 22v-4h-4"></path><path d="m22 18-1.535 1.605a5 5 0 0 1-8-1.5"></path></svg><span>FolderSync</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderTree.html" title="FolderTree directory tree browser files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"></path><path d="M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"></path><path d="M3 5a2 2 0 0 0 2 2h3"></path><path d="M3 3v13a2 2 0 0 0 2 2h3"></path></svg><span>FolderTree</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderUp.html" title="FolderUp directory upload import export files arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="M12 10v6"></path><path d="m9 13 3-3 3 3"></path></svg><span>FolderUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FolderX.html" title="FolderX directory remove delete files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path><path d="m9.5 10.5 5 5"></path><path d="m14.5 10.5-5 5"></path></svg><span>FolderX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Folder.html" title="Folder directory files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span>Folder</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Folders.html" title="Folders multiple copy directories files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z"></path><path d="M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1"></path></svg><span>Folders</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Footprints.html" title="Footprints steps walking foot feet trail shoe navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"></path><path d="M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"></path><path d="M16 17h4"></path><path d="M4 13h4"></path></svg><span>Footprints</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Forklift.html" title="Forklift machinery industrial warehouse lifting storage equipment heavy-duty moving vehicle transport logistics transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12H5a2 2 0 0 0-2 2v5"></path><path d="M15 19h7"></path><path d="M16 19V2"></path><path d="M6 12V7a2 2 0 0 1 2-2h2.172a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 16 10.828"></path><path d="M7 19h4"></path><circle cx="13" cy="19" r="2"></circle><circle cx="5" cy="19" r="2"></circle></svg><span>Forklift</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Form.html" title="Form document page file layout paper stub formality structure template inputs design components development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14h6"></path><path d="M4 2h10"></path><rect height="4" rx="1" width="16" x="4" y="18"></rect><rect height="4" rx="1" width="16" x="4" y="6"></rect></svg><span>Form</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Forward.html" title="Forward send share email mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 17 5-5-5-5"></path><path d="M4 18v-2a4 4 0 0 1 4-4h12"></path></svg><span>Forward</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Frame.html" title="Frame logo design tool design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="22" x2="2" y1="6" y2="6"></line><line x1="22" x2="2" y1="18" y2="18"></line><line x1="6" x2="6" y1="2" y2="22"></line><line x1="18" x2="18" y1="2" y2="22"></line></svg><span>Frame</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Frown.html" title="Frown emoji face bad sad emotion emoji account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M16 16s-1.5-2-4-2-4 2-4 2"></path><line x1="9" x2="9.01" y1="9" y2="9"></line><line x1="15" x2="15.01" y1="9" y2="9"></line></svg><span>Frown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Fuel.html" title="Fuel filling-station gas petrol tank transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"></path><path d="M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"></path><path d="M2 21h13"></path><path d="M3 9h11"></path></svg><span>Fuel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Fullscreen.html" title="Fullscreen expand zoom preview focus camera lens image layout multimedia design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><rect height="8" rx="1" width="10" x="7" y="8"></rect></svg><span>Fullscreen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FunnelPlus.html" title="FunnelPlus filter hopper add create new layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348"></path><path d="M16 6h6"></path><path d="M19 3v6"></path></svg><span>FunnelPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.FunnelX.html" title="FunnelX filter hopper remove delete layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473"></path><path d="m16.5 3.5 5 5"></path><path d="m21.5 3.5-5 5"></path></svg><span>FunnelX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Funnel.html" title="Funnel filter hopper layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"></path></svg><span>Funnel</span></a>
</div>
<h3>G</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.GalleryHorizontalEnd.html" title="GalleryHorizontalEnd carousel pictures images scroll swipe album portfolio history versions backup time machine layout design development photography multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 7v10"></path><path d="M6 5v14"></path><rect height="18" rx="2" width="12" x="10" y="3"></rect></svg><span>GalleryHorizontalEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GalleryHorizontal.html" title="GalleryHorizontal carousel pictures images scroll swipe album portfolio layout design development photography multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 3v18"></path><rect height="18" rx="2" width="12" x="6" y="3"></rect><path d="M22 3v18"></path></svg><span>GalleryHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GalleryThumbnails.html" title="GalleryThumbnails carousel pictures images album portfolio preview layout design development photography multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="18" x="3" y="3"></rect><path d="M4 21h1"></path><path d="M9 21h1"></path><path d="M14 21h1"></path><path d="M19 21h1"></path></svg><span>GalleryThumbnails</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GalleryVerticalEnd.html" title="GalleryVerticalEnd carousel pictures images scroll swipe album portfolio history versions backup time machine layout design development photography multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 2h10"></path><path d="M5 6h14"></path><rect height="12" rx="2" width="18" x="3" y="10"></rect></svg><span>GalleryVerticalEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GalleryVertical.html" title="GalleryVertical carousel pictures images scroll swipe album portfolio layout design development photography multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 2h18"></path><rect height="12" rx="2" width="18" x="3" y="6"></rect><path d="M3 22h18"></path></svg><span>GalleryVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gamepad2.html" title="Gamepad2 console gaming devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="6" x2="10" y1="11" y2="11"></line><line x1="8" x2="8" y1="9" y2="13"></line><line x1="15" x2="15.01" y1="12" y2="12"></line><line x1="18" x2="18.01" y1="10" y2="10"></line><path d="M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"></path></svg><span>Gamepad2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GamepadDirectional.html" title="GamepadDirectional direction arrow controller navigation button move pointer arrowhead console game gaming gaming devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z"></path><path d="M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"></path><path d="M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z"></path><path d="M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z"></path></svg><span>GamepadDirectional</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gamepad.html" title="Gamepad console gaming devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="6" x2="10" y1="12" y2="12"></line><line x1="8" x2="8" y1="10" y2="14"></line><line x1="15" x2="15.01" y1="13" y2="13"></line><line x1="18" x2="18.01" y1="11" y2="11"></line><rect height="12" rx="2" width="20" x="2" y="6"></rect></svg><span>Gamepad</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gauge.html" title="Gauge dashboard dial meter speed pressure measure level transportation sports science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 14 4-4"></path><path d="M3.34 19a10 10 0 1 1 17.32 0"></path></svg><span>Gauge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gavel.html" title="Gavel justice law court judgment legal hands penalty decision authority hammer mallet navigation tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381"></path><path d="m16 16 6-6"></path><path d="m21.5 10.5-8-8"></path><path d="m8 8 6-6"></path><path d="m8.5 7.5 8 8"></path></svg><span>Gavel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gem.html" title="Gem diamond crystal ruby jewellery price special present gift ring wedding proposal marriage rubygems gaming development finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 3 8 9l4 13 4-13-2.5-6"></path><path d="M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z"></path><path d="M2 9h20"></path></svg><span>Gem</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GeorgianLari.html" title="GeorgianLari currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.5 21a7.5 7.5 0 1 1 7.35-9"></path><path d="M13 12V3"></path><path d="M4 21h16"></path><path d="M9 12V3"></path></svg><span>GeorgianLari</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ghost.html" title="Ghost pac-man spooky gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 10h.01"></path><path d="M15 10h.01"></path><path d="M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"></path></svg><span>Ghost</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gift.html" title="Gift present box birthday party gaming account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v14"></path><path d="M20 11v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"></path><path d="M7.5 7a1 1 0 0 1 0-5A4.8 8 0 0 1 12 7a4.8 8 0 0 1 4.5-5 1 1 0 0 1 0 5"></path><rect height="4" rx="1" width="18" x="3" y="7"></rect></svg><span>Gift</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitBranchMinus.html" title="GitBranchMinus code version control vcs repository delete remove - development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 6a9 9 0 0 0-9 9V3"></path><path d="M21 18h-6"></path><circle cx="18" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle></svg><span>GitBranchMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitBranchPlus.html" title="GitBranchPlus code version control vcs repository add create + development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 3v12"></path><path d="M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"></path><path d="M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"></path><path d="M15 6a9 9 0 0 0-9 9"></path><path d="M18 15v6"></path><path d="M21 18h-6"></path></svg><span>GitBranchPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitBranch.html" title="GitBranch code version control vcs repository development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 6a9 9 0 0 0-9 9V3"></path><circle cx="18" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle></svg><span>GitBranch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitCommitHorizontal.html" title="GitCommitHorizontal code version control waypoint stop station development navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"></circle><line x1="3" x2="9" y1="12" y2="12"></line><line x1="15" x2="21" y1="12" y2="12"></line></svg><span>GitCommitHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitCommitVertical.html" title="GitCommitVertical code version control waypoint stop station development navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v6"></path><circle cx="12" cy="12" r="3"></circle><path d="M12 15v6"></path></svg><span>GitCommitVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitCompareArrows.html" title="GitCompareArrows code version control diff development arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="3"></circle><path d="M12 6h5a2 2 0 0 1 2 2v7"></path><path d="m15 9-3-3 3-3"></path><circle cx="19" cy="18" r="3"></circle><path d="M12 18H7a2 2 0 0 1-2-2V9"></path><path d="m9 15 3 3-3 3"></path></svg><span>GitCompareArrows</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitCompare.html" title="GitCompare code version control diff development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M13 6h3a2 2 0 0 1 2 2v7"></path><path d="M11 18H8a2 2 0 0 1-2-2V9"></path></svg><span>GitCompare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitFork.html" title="GitFork code version control development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><circle cx="18" cy="6" r="3"></circle><path d="M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"></path><path d="M12 12v3"></path></svg><span>GitFork</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitGraph.html" title="GitGraph code version control commit graph commits gitlens development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="3"></circle><path d="M5 9v6"></path><circle cx="5" cy="18" r="3"></circle><path d="M12 3v18"></path><circle cx="19" cy="6" r="3"></circle><path d="M16 15.7A9 9 0 0 0 19 9"></path></svg><span>GitGraph</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitMergeConflict.html" title="GitMergeConflict code version control commits diff error conflict development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6h4a2 2 0 0 1 2 2v7"></path><path d="M6 12v9"></path><path d="M9 3 3 9"></path><path d="M9 9 3 3"></path><circle cx="18" cy="18" r="3"></circle></svg><span>GitMergeConflict</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitMerge.html" title="GitMerge code version control development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M6 21V9a9 9 0 0 0 9 9"></path></svg><span>GitMerge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitPullRequestArrow.html" title="GitPullRequestArrow code version control open development arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="3"></circle><path d="M5 9v12"></path><circle cx="19" cy="18" r="3"></circle><path d="m15 9-3-3 3-3"></path><path d="M12 6h5a2 2 0 0 1 2 2v7"></path></svg><span>GitPullRequestArrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitPullRequestClosed.html" title="GitPullRequestClosed code version control rejected closed cancelled x development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="6" r="3"></circle><path d="M6 9v12"></path><path d="m21 3-6 6"></path><path d="m21 9-6-6"></path><path d="M18 11.5V15"></path><circle cx="18" cy="18" r="3"></circle></svg><span>GitPullRequestClosed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitPullRequestCreateArrow.html" title="GitPullRequestCreateArrow code version control open plus add + development arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="3"></circle><path d="M5 9v12"></path><path d="m15 9-3-3 3-3"></path><path d="M12 6h5a2 2 0 0 1 2 2v3"></path><path d="M19 15v6"></path><path d="M22 18h-6"></path></svg><span>GitPullRequestCreateArrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitPullRequestCreate.html" title="GitPullRequestCreate code version control open plus add + development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="6" r="3"></circle><path d="M6 9v12"></path><path d="M13 6h3a2 2 0 0 1 2 2v3"></path><path d="M18 15v6"></path><path d="M21 18h-6"></path></svg><span>GitPullRequestCreate</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitPullRequestDraft.html" title="GitPullRequestDraft code version control open draft dashed development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M18 6V5"></path><path d="M18 11v-1"></path><line x1="6" x2="6" y1="9" y2="21"></line></svg><span>GitPullRequestDraft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GitPullRequest.html" title="GitPullRequest code version control open development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M13 6h3a2 2 0 0 1 2 2v7"></path><line x1="6" x2="6" y1="9" y2="21"></line></svg><span>GitPullRequest</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GlassWater.html" title="GlassWater beverage drink glass water food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z"></path><path d="M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"></path></svg><span>GlassWater</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Glasses.html" title="Glasses glasses spectacles accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="15" r="4"></circle><circle cx="18" cy="15" r="4"></circle><path d="M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"></path><path d="M2.5 13 5 7c.7-1.3 1.4-2 3-2"></path><path d="M21.5 13 19 7c-.7-1.3-1.5-2-3-2"></path></svg><span>Glasses</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GlobeLock.html" title="GlobeLock vpn private privacy network world browser security encryption protection connection security development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"></path><path d="M2 12h8.5"></path><path d="M20 6V4a2 2 0 1 0-4 0v2"></path><rect height="5" rx="1" width="8" x="14" y="6"></rect></svg><span>GlobeLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GlobeOff.html" title="GlobeOff globe earth planet disable mute off hide avoid world browser language translate internet offline disconnected network connection no connection network failure signal off navigation connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.114 4.462A14.5 14.5 0 0 1 12 2a10 10 0 0 1 9.313 13.643"></path><path d="M15.557 15.556A14.5 14.5 0 0 1 12 22 10 10 0 0 1 4.929 4.929"></path><path d="M15.892 10.234A14.5 14.5 0 0 0 12 2a10 10 0 0 0-3.643.687"></path><path d="M17.656 12H22"></path><path d="M19.071 19.071A10 10 0 0 1 12 22 14.5 14.5 0 0 1 8.44 8.45"></path><path d="M2 12h10"></path><path d="m2 2 20 20"></path></svg><span>GlobeOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GlobeX.html" title="GlobeX globe internet offline disconnected network connection world no connection network failure signal off connectivity devices navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 3 5 5"></path><path d="M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10"></path><path d="m21 3-5 5"></path></svg><span>GlobeX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Globe.html" title="Globe world browser language translate navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"></path><path d="M2 12h20"></path></svg><span>Globe</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Goal.html" title="Goal flag bullseye gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13V2l8 4-8 4"></path><path d="M20.561 10.222a9 9 0 1 1-12.55-5.29"></path><path d="M8.002 9.997a5 5 0 1 0 8.9 2.02"></path></svg><span>Goal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Gpu.html" title="Gpu processor cores technology computer chip circuit specs graphics processing unit video card display adapter gddr rendering digital image processing crypto mining devices gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 17h18a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H2"></path><path d="M2 21V3"></path><path d="M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"></path><circle cx="16" cy="11" r="2"></circle><circle cx="8" cy="11" r="2"></circle></svg><span>Gpu</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GraduationCap.html" title="GraduationCap school university learn study mortarboard education ceremony academic hat diploma bachlor's master's doctorate buildings"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z"></path><path d="M22 10v6"></path><path d="M6 12.5V16a6 3 0 0 0 12 0v-3.5"></path></svg><span>GraduationCap</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grape.html" title="Grape fruit wine food food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 5V2l-5.89 5.89"></path><circle cx="16.6" cy="15.89" r="3"></circle><circle cx="8.11" cy="7.4" r="3"></circle><circle cx="12.35" cy="11.65" r="3"></circle><circle cx="13.91" cy="5.85" r="3"></circle><circle cx="18.15" cy="10.09" r="3"></circle><circle cx="6.56" cy="13.2" r="3"></circle><circle cx="10.8" cy="17.44" r="3"></circle><circle cx="5" cy="19" r="3"></circle></svg><span>Grape</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grid2x2Check.html" title="Grid2x2Check table rows columns blocks plot land geometry measure data size width height distance surface area square meter acre text layout math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"></path><path d="m16 19 2 2 4-4"></path></svg><span>Grid2x2Check</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grid2x2Plus.html" title="Grid2x2Plus table rows columns blocks plot land geometry measure data size width height distance surface area square meter acre text layout math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"></path><path d="M16 19h6"></path><path d="M19 22v-6"></path></svg><span>Grid2x2Plus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grid2x2X.html" title="Grid2x2X table rows columns data blocks plot land geometry measure size width height distance surface area square meter acre text layout math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"></path><path d="m16 16 5 5"></path><path d="m16 21 5-5"></path></svg><span>Grid2x2X</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grid2x2.html" title="Grid2x2 table rows columns blocks plot land geometry measure size width height distance surface area square meter acre window skylight text layout design math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v18"></path><path d="M3 12h18"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>Grid2x2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grid3x2.html" title="Grid3x2 table rows columns blocks plot land geometry measure size width height distance surface area square meter acre window text math layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3v18"></path><path d="M3 12h18"></path><path d="M9 3v18"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>Grid3x2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grid3x3.html" title="Grid3x3 table rows columns text layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9h18"></path><path d="M3 15h18"></path><path d="M9 3v18"></path><path d="M15 3v18"></path></svg><span>Grid3x3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GripHorizontal.html" title="GripHorizontal grab dots handle move drag layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="9" r="1"></circle><circle cx="19" cy="9" r="1"></circle><circle cx="5" cy="9" r="1"></circle><circle cx="12" cy="15" r="1"></circle><circle cx="19" cy="15" r="1"></circle><circle cx="5" cy="15" r="1"></circle></svg><span>GripHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.GripVertical.html" title="GripVertical grab dots handle move drag layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="12" r="1"></circle><circle cx="9" cy="5" r="1"></circle><circle cx="9" cy="19" r="1"></circle><circle cx="15" cy="12" r="1"></circle><circle cx="15" cy="5" r="1"></circle><circle cx="15" cy="19" r="1"></circle></svg><span>GripVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Grip.html" title="Grip grab dots handle move drag layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="5" r="1"></circle><circle cx="19" cy="5" r="1"></circle><circle cx="5" cy="5" r="1"></circle><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle><circle cx="12" cy="19" r="1"></circle><circle cx="19" cy="19" r="1"></circle><circle cx="5" cy="19" r="1"></circle></svg><span>Grip</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Group.html" title="Group cubes packages parts units collection cluster gather dashed files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5c0-1.1.9-2 2-2h2"></path><path d="M17 3h2c1.1 0 2 .9 2 2v2"></path><path d="M21 17v2c0 1.1-.9 2-2 2h-2"></path><path d="M7 21H5c-1.1 0-2-.9-2-2v-2"></path><rect height="5" rx="1" width="7" x="7" y="7"></rect><rect height="5" rx="1" width="7" x="10" y="12"></rect></svg><span>Group</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Guitar.html" title="Guitar acoustic instrument strings riff rock band country concert performance play lead loud music audio sound noise multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11.9 12.1 4.514-4.514"></path><path d="M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z"></path><path d="m6 16 2 2"></path><path d="M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z"></path></svg><span>Guitar</span></a>
</div>
<h3>H</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Ham.html" title="Ham food pork pig meat bone hock knuckle gammon cured food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856"></path><path d="M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288"></path><path d="M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025"></path><path d="m8.5 16.5-1-1"></path></svg><span>Ham</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hamburger.html" title="Hamburger burger cheeseburger meat beef patty bun fast food junk food takeaway takeout snack dish restaurant lunch meal savory savoury cookery cooking grilled barbecue barbeque bbq lettuce tomato relish pickles onions ketchup mustard mayonnaise food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"></path><path d="M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"></path><path d="M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"></path><path d="m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"></path></svg><span>Hamburger</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hammer.html" title="Hammer mallet nails diy toolbox build construction tools home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9"></path><path d="m18 15 4-4"></path><path d="m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5"></path></svg><span>Hammer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandCoins.html" title="HandCoins savings banking money finance offers mortgage payment received wage payroll allowance pocket money handout pennies finance account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17"></path><path d="m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"></path><path d="m2 16 6 6"></path><circle cx="16" cy="9" r="2.9"></circle><circle cx="6" cy="5" r="3"></circle></svg><span>HandCoins</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandFist.html" title="HandFist clench strength power unity solidarity rebellion victory triumph support fight combat brawl social emoji communication sports"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0"></path><path d="M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5"></path><path d="M9 5A2 2 0 1 0 5 5V10"></path><path d="M9 7V4A2 2 0 1 1 13 4V7.268"></path></svg><span>HandFist</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandGrab.html" title="HandGrab hand cursors design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"></path><path d="M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"></path><path d="M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5"></path><path d="M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2"></path><path d="M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"></path></svg><span>HandGrab</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandHeart.html" title="HandHeart love like emotion social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16"></path><path d="m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95"></path><path d="m2 15 6 6"></path><path d="m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91"></path></svg><span>HandHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandHelping.html" title="HandHelping agreement help proposal charity begging terms emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14"></path><path d="m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"></path><path d="m2 13 6 6"></path></svg><span>HandHelping</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandMetal.html" title="HandMetal rock emoji multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"></path><path d="M14 11V9a2 2 0 1 0-4 0v2"></path><path d="M10 10.5V5a2 2 0 1 0-4 0v9"></path><path d="m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"></path></svg><span>HandMetal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HandPlatter.html" title="HandPlatter waiter waitress restaurant table service served dinner dining meal course luxury food-beverage people"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3V2"></path><path d="m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5"></path><path d="M2 14h12a2 2 0 0 1 0 4h-2"></path><path d="M4 10h16"></path><path d="M5 10a7 7 0 0 1 14 0"></path><path d="M5 14v6a1 1 0 0 1-1 1H2"></path></svg><span>HandPlatter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hand.html" title="Hand wave move mouse grab cursors accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2"></path><path d="M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"></path><path d="M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8"></path><path d="M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"></path></svg><span>Hand</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Handbag.html" title="Handbag bag baggage carry clutch fashion luggage purse tote travel shopping transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z"></path><path d="M8 11V6a4 4 0 0 1 8 0v5"></path></svg><span>Handbag</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Handshake.html" title="Handshake agreement partnership deal business assistance cooperation friendship union terms account social communication finance security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 17 2 2a1 1 0 1 0 3-3"></path><path d="m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4"></path><path d="m21 3 1 11h-2"></path><path d="M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3"></path><path d="M3 4h8"></path></svg><span>Handshake</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HardDriveDownload.html" title="HardDriveDownload computer server memory data ssd disk hard disk save development devices arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v8"></path><path d="m16 6-4 4-4-4"></path><rect height="8" rx="2" width="20" x="2" y="14"></rect><path d="M6 18h.01"></path><path d="M10 18h.01"></path></svg><span>HardDriveDownload</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HardDriveUpload.html" title="HardDriveUpload computer server memory data ssd disk hard disk save development devices arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 6-4-4-4 4"></path><path d="M12 2v8"></path><rect height="8" rx="2" width="20" x="2" y="14"></rect><path d="M6 18h.01"></path><path d="M10 18h.01"></path></svg><span>HardDriveUpload</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HardDrive.html" title="HardDrive computer server memory data ssd disk hard disk storage hardware backup media development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 16h.01"></path><path d="M2.212 11.577a2 2 0 0 0-.212.896V18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5.527a2 2 0 0 0-.212-.896L18.55 5.11A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path><path d="M21.946 12.013H2.054"></path><path d="M6 16h.01"></path></svg><span>HardDrive</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HardHat.html" title="HardHat helmet construction safety savety tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"></path><path d="M14 6a6 6 0 0 1 6 6v3"></path><path d="M4 15v-3a6 6 0 0 1 6-6"></path><rect height="4" rx="1" width="20" x="2" y="15"></rect></svg><span>HardHat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hash.html" title="Hash hashtag number pound text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="4" x2="20" y1="9" y2="9"></line><line x1="4" x2="20" y1="15" y2="15"></line><line x1="10" x2="8" y1="3" y2="21"></line><line x1="16" x2="14" y1="3" y2="21"></line></svg><span>Hash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HatGlasses.html" title="HatGlasses incognito disguise costume masked anonymous anonymity privacy private browsing stealth hidden undercover cloak invisible ghost spy agent detective identity cap fedora spectacles shades sunglasses eyewear social account security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 18a2 2 0 0 0-4 0"></path><path d="m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11"></path><path d="M2 11h20"></path><circle cx="17" cy="18" r="3"></circle><circle cx="7" cy="18" r="3"></circle></svg><span>HatGlasses</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Haze.html" title="Haze mist fog weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m5.2 6.2 1.4 1.4"></path><path d="M2 13h2"></path><path d="M20 13h2"></path><path d="m17.4 7.6 1.4-1.4"></path><path d="M22 17H2"></path><path d="M22 21H2"></path><path d="M16 13a4 4 0 0 0-8 0"></path><path d="M12 5V2.5"></path></svg><span>Haze</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hd.html" title="Hd tv resolution video high definition 720p 1080p devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12H6"></path><path d="M10 15V9"></path><path d="M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z"></path><path d="M6 15V9"></path><rect height="14" rx="2" width="20" x="2" y="5"></rect></svg><span>Hd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HdmiPort.html" title="HdmiPort socket plug slot controller connector interface console signal audio video visual av data input output devices multimedia gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z"></path><path d="M7.5 12h9"></path></svg><span>HdmiPort</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading1.html" title="Heading1 h1 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12h8"></path><path d="M4 18V6"></path><path d="M12 18V6"></path><path d="m17 12 3-2v8"></path></svg><span>Heading1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading2.html" title="Heading2 h2 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12h8"></path><path d="M4 18V6"></path><path d="M12 18V6"></path><path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg><span>Heading2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading3.html" title="Heading3 h3 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12h8"></path><path d="M4 18V6"></path><path d="M12 18V6"></path><path d="M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"></path><path d="M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"></path></svg><span>Heading3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading4.html" title="Heading4 h4 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18V6"></path><path d="M17 10v3a1 1 0 0 0 1 1h3"></path><path d="M21 10v8"></path><path d="M4 12h8"></path><path d="M4 18V6"></path></svg><span>Heading4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading5.html" title="Heading5 h5 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12h8"></path><path d="M4 18V6"></path><path d="M12 18V6"></path><path d="M17 13v-3h4"></path><path d="M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"></path></svg><span>Heading5</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading6.html" title="Heading6 h6 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12h8"></path><path d="M4 18V6"></path><path d="M12 18V6"></path><circle cx="19" cy="16" r="2"></circle><path d="M20 10c-2 2-3 3.5-3 6"></path></svg><span>Heading6</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heading.html" title="Heading h1 html markup markdown text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 12h12"></path><path d="M6 20V4"></path><path d="M18 20V4"></path></svg><span>Heading</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeadphoneOff.html" title="HeadphoneOff music audio sound mute off multimedia connectivity communication devices gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 14h-1.343"></path><path d="M9.128 3.47A9 9 0 0 1 21 12v3.343"></path><path d="m2 2 20 20"></path><path d="M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3"></path><path d="M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364"></path></svg><span>HeadphoneOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Headphones.html" title="Headphones music audio sound multimedia connectivity devices files gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3"></path></svg><span>Headphones</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Headset.html" title="Headset music audio sound gaming headphones headset call center phone telephone voip video multimedia connectivity devices files gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"></path><path d="M21 16v2a4 4 0 0 1-4 4h-5"></path></svg><span>Headset</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartCrack.html" title="HeartCrack heartbreak sadness emotion emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15"></path><path d="M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z"></path></svg><span>HeartCrack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartHandshake.html" title="HeartHandshake agreement charity help deal terms emotion together handshake emoji account security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762"></path></svg><span>HeartHandshake</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartMinus.html" title="HeartMinus unlike unfavorite remove delete damage medical account multimedia gaming social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572"></path><path d="M15 15h6"></path></svg><span>HeartMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartOff.html" title="HeartOff unlike dislike hate emotion social multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655"></path><path d="m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761"></path><path d="m2 2 20 20"></path></svg><span>HeartOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartPlus.html" title="HeartPlus plus like favorite add health support medical account multimedia gaming social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49"></path><path d="M15 15h6"></path><path d="M18 12v6"></path></svg><span>HeartPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartPulse.html" title="HeartPulse heartbeat pulse health medical blood pressure cardiac systole diastole medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"></path><path d="M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27"></path></svg><span>HeartPulse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HeartX.html" title="HeartX unlike unfavorite remove reject dismiss delete clear social multimedia design shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.5 12.5 5 5"></path><path d="m20.5 12.5-5 5"></path><path d="M21.955 8.774a5.5 5.5 0 0 0-9.546-2.95.6.6 0 0 1-.818 0A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.508 5.332a2 2 0 0 0 2.57.352"></path></svg><span>HeartX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heart.html" title="Heart like love emotion suit playing cards medical social multimedia emoji gaming shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"></path></svg><span>Heart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Heater.html" title="Heater heating warmth comfort fire stove electric electronics amenities home devices travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 8c2-3-2-3 0-6"></path><path d="M15.5 8c2-3-2-3 0-6"></path><path d="M6 10h.01"></path><path d="M6 14h.01"></path><path d="M10 16v-4"></path><path d="M14 16v-4"></path><path d="M18 16v-4"></path><path d="M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3"></path><path d="M5 20v2"></path><path d="M19 20v2"></path></svg><span>Heater</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Helicopter.html" title="Helicopter transport flying rotor aviation helipad gear flyer technology helicopter aircraft vehicle transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 17v4"></path><path d="M14 3v8a2 2 0 0 0 2 2h5.865"></path><path d="M17 17v4"></path><path d="M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z"></path><path d="M2 10v5"></path><path d="M6 3h16"></path><path d="M7 21h14"></path><path d="M8 13H2"></path></svg><span>Helicopter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hexagon.html" title="Hexagon shape node.js logo shapes development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path></svg><span>Hexagon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Highlighter.html" title="Highlighter mark text text design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 11-6 6v3h9l3-3"></path><path d="m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"></path></svg><span>Highlighter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.History.html" title="History time redo undo rewind timeline version time machine backup rotate ccw arrows time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"></path><path d="M3 3v5h5"></path><path d="M12 7v5l4 2"></path></svg><span>History</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HopOff.html" title="HopOff beer brewery drink hop free allergy intolerance diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27"></path><path d="M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28"></path><path d="M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26"></path><path d="M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25"></path><path d="M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75"></path><path d="M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24"></path><path d="M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28"></path><path d="M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05"></path><path d="m2 2 20 20"></path></svg><span>HopOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hop.html" title="Hop beer brewery drink food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18"></path><path d="M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88"></path><path d="M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36"></path><path d="M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87"></path><path d="M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08"></path><path d="M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57"></path><path d="M4.93 4.93 3 3a.7.7 0 0 1 0-1"></path><path d="M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15"></path></svg><span>Hop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hospital.html" title="Hospital infirmary sanatorium healthcare doctor hospice clinic emergency room ward building medical vet medical buildings navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v4"></path><path d="M14 21v-3a2 2 0 0 0-4 0v3"></path><path d="M14 9h-4"></path><path d="M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2"></path><path d="M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"></path></svg><span>Hospital</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hotel.html" title="Hotel building hostel motel inn buildings navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 22v-6.57"></path><path d="M12 11h.01"></path><path d="M12 7h.01"></path><path d="M14 15.43V22"></path><path d="M15 16a5 5 0 0 0-6 0"></path><path d="M16 11h.01"></path><path d="M16 7h.01"></path><path d="M8 11h.01"></path><path d="M8 7h.01"></path><rect height="20" rx="2" width="16" x="4" y="2"></rect></svg><span>Hotel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Hourglass.html" title="Hourglass timer time sandglass time gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 22h14"></path><path d="M5 2h14"></path><path d="M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"></path><path d="M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"></path></svg><span>Hourglass</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HouseHeart.html" title="HouseHeart home sweet home abode building residence healthy living lifestyle home buildings medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"></path><path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path></svg><span>HouseHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HousePlug.html" title="HousePlug home living building residence architecture autarky energy buildings home sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12V8.964"></path><path d="M14 12V8.964"></path><path d="M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z"></path><path d="M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2"></path></svg><span>HousePlug</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HousePlus.html" title="HousePlus home living medical new addition building residence architecture buildings medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35"></path><path d="M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8"></path><path d="M15 18h6"></path><path d="M18 15v6"></path></svg><span>HousePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.HouseWifi.html" title="HouseWifi home living building wifi connectivity home buildings connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9.5 13.866a4 4 0 0 1 5 .01"></path><path d="M12 17h.01"></path><path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><path d="M7 10.754a8 8 0 0 1 10 0"></path></svg><span>HouseWifi</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.House.html" title="House home living building residence architecture buildings home navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"></path><path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path></svg><span>House</span></a>
</div>
<h3>I</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.IceCreamBowl.html" title="IceCreamBowl gelato food dessert dish restaurant course meal food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0"></path><path d="M12.14 11a3.5 3.5 0 1 1 6.71 0"></path><path d="M15.5 6.5a3.5 3.5 0 1 0-7 0"></path></svg><span>IceCreamBowl</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.IceCreamCone.html" title="IceCreamCone gelato food food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"></path><path d="M17 7A5 5 0 0 0 7 7"></path><path d="M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"></path></svg><span>IceCreamCone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.IdCardLanyard.html" title="IdCardLanyard id-card id-card-lanyard identity employee gate-pass badge security account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.5 8h-3"></path><path d="m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3"></path><path d="M16.899 22A5 5 0 0 0 7.1 22"></path><path d="m9 2 3 6"></path><circle cx="12" cy="15" r="3"></circle></svg><span>IdCardLanyard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.IdCard.html" title="IdCard card badge identity authentication secure security account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 10h2"></path><path d="M16 14h2"></path><path d="M6.17 15a3 3 0 0 1 5.66 0"></path><circle cx="9" cy="11" r="2"></circle><rect height="14" rx="2" width="20" x="2" y="5"></rect></svg><span>IdCard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImageDown.html" title="ImageDown picture photo download save export photography text multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"></path><path d="m14 19 3 3v-5.5"></path><path d="m17 22 3-3"></path><circle cx="9" cy="9" r="2"></circle></svg><span>ImageDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImageMinus.html" title="ImageMinus remove delete photography multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"></path><line x1="16" x2="22" y1="5" y2="5"></line><circle cx="9" cy="9" r="2"></circle><path d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"></path></svg><span>ImageMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImageOff.html" title="ImageOff picture photo photography multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="2" x2="22" y1="2" y2="22"></line><path d="M10.41 10.41a2 2 0 1 1-2.83-2.83"></path><line x1="13.5" x2="6" y1="13.5" y2="21"></line><line x1="18" x2="21" y1="12" y2="15"></line><path d="M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"></path><path d="M21 15V5a2 2 0 0 0-2-2H9"></path></svg><span>ImageOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImagePlay.html" title="ImagePlay picture gif photo photography text multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"></path><path d="M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"></path><path d="m6 21 5-5"></path><circle cx="9" cy="9" r="2"></circle></svg><span>ImagePlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImagePlus.html" title="ImagePlus add create picture photography multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5h6"></path><path d="M19 2v6"></path><path d="M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"></path><path d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"></path><circle cx="9" cy="9" r="2"></circle></svg><span>ImagePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImageUp.html" title="ImageUp picture photo upload import photography text multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"></path><path d="m14 19.5 3-3 3 3"></path><path d="M17 22v-5.5"></path><circle cx="9" cy="9" r="2"></circle></svg><span>ImageUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ImageUpscale.html" title="ImageUpscale resize picture sharpen increase photography multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3h5v5"></path><path d="M17 21h2a2 2 0 0 0 2-2"></path><path d="M21 12v3"></path><path d="m21 3-5 5"></path><path d="M3 7V5a2 2 0 0 1 2-2"></path><path d="m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"></path><path d="M9 3h3"></path><rect height="10" rx="1" width="10" x="3" y="11"></rect></svg><span>ImageUpscale</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Image.html" title="Image picture photo photography text multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><circle cx="9" cy="9" r="2"></circle><path d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"></path></svg><span>Image</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Images.html" title="Images picture photo multiple copy gallery album collection slideshow showcase photography text multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"></path><path d="M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"></path><circle cx="13" cy="7" fill="currentColor" r="1"></circle><rect height="14" rx="2" width="14" x="8" y="2"></rect></svg><span>Images</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Import.html" title="Import save arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"></path><path d="m8 11 4 4 4-4"></path><path d="M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"></path></svg><span>Import</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Inbox.html" title="Inbox email account mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path></svg><span>Inbox</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.IndianRupee.html" title="IndianRupee currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 3h12"></path><path d="M6 8h12"></path><path d="m6 13 8.5 8"></path><path d="M6 13h3"></path><path d="M9 13c6.667 0 6.667-10 0-10"></path></svg><span>IndianRupee</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Infinity.html" title="Infinity unlimited forever loop math multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8"></path></svg><span>Infinity</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Info.html" title="Info about advice clue details help hint indicator information knowledge notice status support tooltip accessibility notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 16v-4"></path><path d="M12 8h.01"></path></svg><span>Info</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.InspectionPanel.html" title="InspectionPanel access cover tile metal materials screws tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7 7h.01"></path><path d="M17 7h.01"></path><path d="M7 17h.01"></path><path d="M17 17h.01"></path></svg><span>InspectionPanel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Italic.html" title="Italic oblique text format text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="19" x2="10" y1="4" y2="4"></line><line x1="14" x2="5" y1="20" y2="20"></line><line x1="15" x2="9" y1="4" y2="20"></line></svg><span>Italic</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.IterationCcw.html" title="IterationCcw arrow right arrows design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 14 4 4-4 4"></path><path d="M20 10a8 8 0 1 0-8 8h8"></path></svg><span>IterationCcw</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.IterationCw.html" title="IterationCw arrow left arrows design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10a8 8 0 1 1 8 8H4"></path><path d="m8 22-4-4 4-4"></path></svg><span>IterationCw</span></a>
</div>
<h3>J</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.JapaneseYen.html" title="JapaneseYen currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 9.5V21m0-11.5L6 3m6 6.5L18 3"></path><path d="M6 15h12"></path><path d="M6 11h12"></path></svg><span>JapaneseYen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Joystick.html" title="Joystick game console control stick gaming devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"></path><path d="M6 15v-2"></path><path d="M12 15V9"></path><circle cx="12" cy="6" r="3"></circle></svg><span>Joystick</span></a>
</div>
<h3>K</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Kanban.html" title="Kanban projects manage overview board tickets issues roadmap plan intentions productivity work agile code coding charts development design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 3v14"></path><path d="M12 3v8"></path><path d="M19 3v18"></path></svg><span>Kanban</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Kayak.html" title="Kayak kayak boat paddle water sport recreation adventure outdoors equipment lake ocean transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"></path><path d="M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"></path><path d="m6.707 6.707 10.586 10.586"></path><path d="M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"></path></svg><span>Kayak</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.KeyRound.html" title="KeyRound password login authentication secure unlock security account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z"></path><circle cx="16.5" cy="7.5" fill="currentColor" r=".5"></circle></svg><span>KeyRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.KeySquare.html" title="KeySquare password login authentication secure unlock car key security account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z"></path><path d="m14 7 3 3"></path><path d="m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814"></path></svg><span>KeySquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Key.html" title="Key password login authentication secure unlock keychain key ring fob security account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"></path><path d="m21 2-9.6 9.6"></path><circle cx="7.5" cy="15.5" r="5.5"></circle></svg><span>Key</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.KeyboardMusic.html" title="KeyboardMusic music audio sound noise notes keys chord octave midi controller instrument electric signal digital studio production producer pianist piano play performance concert multimedia devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M6 8h4"></path><path d="M14 8h.01"></path><path d="M18 8h.01"></path><path d="M2 12h20"></path><path d="M6 12v4"></path><path d="M10 12v4"></path><path d="M14 12v4"></path><path d="M18 12v4"></path></svg><span>KeyboardMusic</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.KeyboardOff.html" title="KeyboardOff unkeys layout spell settings mouse devices text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M 20 4 A2 2 0 0 1 22 6"></path><path d="M 22 6 L 22 16.41"></path><path d="M 7 16 L 16 16"></path><path d="M 9.69 4 L 20 4"></path><path d="M14 8h.01"></path><path d="M18 8h.01"></path><path d="m2 2 20 20"></path><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"></path><path d="M6 8h.01"></path><path d="M8 12h.01"></path></svg><span>KeyboardOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Keyboard.html" title="Keyboard layout spell settings mouse text devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 8h.01"></path><path d="M12 12h.01"></path><path d="M14 8h.01"></path><path d="M16 12h.01"></path><path d="M18 8h.01"></path><path d="M6 8h.01"></path><path d="M7 16h10"></path><path d="M8 12h.01"></path><rect height="16" rx="2" width="20" x="2" y="4"></rect></svg><span>Keyboard</span></a>
</div>
<h3>L</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.LampCeiling.html" title="LampCeiling lighting household home furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v5"></path><path d="M14.829 15.998a3 3 0 1 1-5.658 0"></path><path d="M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z"></path></svg><span>LampCeiling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LampDesk.html" title="LampDesk lighting household office desk home furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z"></path><path d="m14.207 4.793-3.414 3.414"></path><path d="M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"></path><path d="m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18"></path></svg><span>LampDesk</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LampFloor.html" title="LampFloor lighting household floor home furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10v12"></path><path d="M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z"></path><path d="M9 22h6"></path></svg><span>LampFloor</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LampWallDown.html" title="LampWallDown lighting household wall home furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z"></path><path d="M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"></path><path d="M8 6h4a2 2 0 0 1 2 2v5"></path></svg><span>LampWallDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LampWallUp.html" title="LampWallUp lighting household wall home furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z"></path><path d="M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"></path><path d="M8 18h4a2 2 0 0 0 2-2v-5"></path></svg><span>LampWallUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Lamp.html" title="Lamp lighting household home furniture home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12v6"></path><path d="M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z"></path><path d="M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z"></path></svg><span>Lamp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LandPlot.html" title="LandPlot area surface square metres allotment parcel property plane acres measure distance isometric flag golf course hole design tools math sports gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 8 6-3-6-3v10"></path><path d="m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12"></path><path d="m6.49 12.85 11.02 6.3"></path><path d="M17.51 12.85 6.5 19.15"></path></svg><span>LandPlot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Landmark.html" title="Landmark bank building capitol finance money museum art gallery hall institute pediment portico columns pillars classical architecture government institution finance navigation buildings"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 18v-7"></path><path d="M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z"></path><path d="M14 18v-7"></path><path d="M18 18v-7"></path><path d="M3 22h18"></path><path d="M6 18v-7"></path></svg><span>Landmark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Languages.html" title="Languages translate text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m5 8 6 6"></path><path d="m4 14 6-6 2-3"></path><path d="M2 5h12"></path><path d="M7 2h1"></path><path d="m22 22-5-10-5 10"></path><path d="M14 18h6"></path></svg><span>Languages</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LaptopMinimalCheck.html" title="LaptopMinimalCheck computer screen remote success done todo tick complete task devices notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20h20"></path><path d="m9 10 2 2 4-4"></path><rect height="12" rx="2" width="18" x="3" y="4"></rect></svg><span>LaptopMinimalCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LaptopMinimal.html" title="LaptopMinimal computer screen remote devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="2" ry="2" width="18" x="3" y="4"></rect><line x1="2" x2="22" y1="20" y2="20"></line></svg><span>LaptopMinimal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Laptop.html" title="Laptop computer screen remote devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z"></path><path d="M20.054 15.987H3.946"></path></svg><span>Laptop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LassoSelect.html" title="LassoSelect select cursor arrows design cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 22a5 5 0 0 1-2-4"></path><path d="M7 16.93c.96.43 1.96.74 2.99.91"></path><path d="M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"></path><path d="M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"></path><path d="M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"></path></svg><span>LassoSelect</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Lasso.html" title="Lasso select cursor design cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.704 14.467a10 8 0 1 1 3.115 2.375"></path><path d="M7 22a5 5 0 0 1-2-3.994"></path><circle cx="5" cy="16" r="2"></circle></svg><span>Lasso</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Laugh.html" title="Laugh emoji face happy good emotion emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"></path><line x1="9" x2="9.01" y1="9" y2="9"></line><line x1="15" x2="15.01" y1="9" y2="9"></line></svg><span>Laugh</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Layers2.html" title="Layers2 stack pile pages sheets paperwork copies copy duplicate double shortcuts design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z"></path><path d="m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845"></path></svg><span>Layers2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayersMinus.html" title="LayersMinus stack pile pages sheets paperwork copies copy layers remove delete design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.832z"></path><path d="M16 17h6"></path><path d="M2.003 11.995a1 1 0 0 0 .597.915l8.58 3.91a2 2 0 0 0 .83.18"></path><path d="M2.003 16.995a1 1 0 0 0 .597.915l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l2.11-.96"></path><path d="M22.018 12.004a1 1 0 0 1-.598.916l-.177.08"></path></svg><span>LayersMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayersPlus.html" title="LayersPlus stack layers add new increase create positive copy upgrade design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.831z"></path><path d="M16 17h6"></path><path d="M19 14v6"></path><path d="M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 .825.178"></path><path d="M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l2.116-.962"></path></svg><span>LayersPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Layers.html" title="Layers stack pile pages sheets paperwork copies copy design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z"></path><path d="M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"></path><path d="M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"></path></svg><span>Layers</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayoutDashboard.html" title="LayoutDashboard masonry brick design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="9" rx="1" width="7" x="3" y="3"></rect><rect height="5" rx="1" width="7" x="14" y="3"></rect><rect height="9" rx="1" width="7" x="14" y="12"></rect><rect height="5" rx="1" width="7" x="3" y="16"></rect></svg><span>LayoutDashboard</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayoutGrid.html" title="LayoutGrid app home start design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="7" rx="1" width="7" x="3" y="3"></rect><rect height="7" rx="1" width="7" x="14" y="3"></rect><rect height="7" rx="1" width="7" x="14" y="14"></rect><rect height="7" rx="1" width="7" x="3" y="14"></rect></svg><span>LayoutGrid</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayoutList.html" title="LayoutList todo tasks items pending image photo design layout photography text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="7" rx="1" width="7" x="3" y="3"></rect><rect height="7" rx="1" width="7" x="3" y="14"></rect><path d="M14 4h7"></path><path d="M14 9h7"></path><path d="M14 15h7"></path><path d="M14 20h7"></path></svg><span>LayoutList</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayoutPanelLeft.html" title="LayoutPanelLeft app home start grid design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="1" width="7" x="3" y="3"></rect><rect height="7" rx="1" width="7" x="14" y="3"></rect><rect height="7" rx="1" width="7" x="14" y="14"></rect></svg><span>LayoutPanelLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayoutPanelTop.html" title="LayoutPanelTop window webpage block section grid template structure layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="7" rx="1" width="18" x="3" y="3"></rect><rect height="7" rx="1" width="7" x="3" y="14"></rect><rect height="7" rx="1" width="7" x="14" y="14"></rect></svg><span>LayoutPanelTop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LayoutTemplate.html" title="LayoutTemplate window webpage block section layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="7" rx="1" width="18" x="3" y="3"></rect><rect height="7" rx="1" width="9" x="3" y="14"></rect><rect height="7" rx="1" width="5" x="16" y="14"></rect></svg><span>LayoutTemplate</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Leaf.html" title="Leaf sustainability nature energy plant autumn nature sustainability seasons"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"></path><path d="M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"></path></svg><span>Leaf</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LeafyGreen.html" title="LeafyGreen salad lettuce vegetable chard cabbage bok choy food-beverage emoji sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22"></path><path d="M2 22 17 7"></path></svg><span>LeafyGreen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Lectern.html" title="Lectern pulpit podium stand communication multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3"></path><path d="M18 6V3a1 1 0 0 0-1-1h-3"></path><rect height="12" rx="1" width="8" x="8" y="10"></rect></svg><span>Lectern</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LensConcave.html" title="LensConcave concave lens optics light magnification curved focus refraction science physics eyeglass telescope microscope science tools shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 2a1 1 0 0 0-.8 1.6 14 14 0 0 1 0 16.8A1 1 0 0 0 7 22h10a1 1 0 0 0 .8-1.6 14 14 0 0 1 0-16.8A1 1 0 0 0 17 2z"></path></svg><span>LensConcave</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LensConvex.html" title="LensConvex convex lens optics magnification focus light refraction physics eyeglass telescope microscope curved science science tools shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.433 2a1 1 0 0 1 .824.448 18 18 0 0 1 0 19.104 1 1 0 0 1-.824.448h-2.866a1 1 0 0 1-.824-.448 18 18 0 0 1 0-19.104A1 1 0 0 1 10.567 2z"></path></svg><span>LensConvex</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LibraryBig.html" title="LibraryBig books reading written authors stories fiction novels information knowledge education high school university college academy learning study research collection vinyl records albums music package text photography multimedia navigation development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="1" width="8" x="3" y="3"></rect><path d="M7 3v18"></path><path d="M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z"></path></svg><span>LibraryBig</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Library.html" title="Library books reading written authors stories fiction novels information knowledge education high school university college academy learning study research collection vinyl records albums music package text photography multimedia navigation development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 6 4 14"></path><path d="M12 6v14"></path><path d="M8 8v12"></path><path d="M4 4v16"></path></svg><span>Library</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LifeBuoy.html" title="LifeBuoy preserver life belt lifesaver help rescue ship ring raft inflatable wheel donut accessibility medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="m4.93 4.93 4.24 4.24"></path><path d="m14.83 9.17 4.24-4.24"></path><path d="m14.83 14.83 4.24 4.24"></path><path d="m9.17 14.83-4.24 4.24"></path><circle cx="12" cy="12" r="4"></circle></svg><span>LifeBuoy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ligature.html" title="Ligature text font typography alternates alternatives text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 12h2v8"></path><path d="M14 20h4"></path><path d="M6 12h4"></path><path d="M6 20h4"></path><path d="M8 20V8a4 4 0 0 1 7.464-2"></path></svg><span>Ligature</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LightbulbOff.html" title="LightbulbOff lights photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5"></path><path d="m2 2 20 20"></path><path d="M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5"></path><path d="M9 18h6"></path><path d="M10 22h4"></path></svg><span>LightbulbOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Lightbulb.html" title="Lightbulb idea bright lights photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"></path><path d="M9 18h6"></path><path d="M10 22h4"></path></svg><span>Lightbulb</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LineDotRightHorizontal.html" title="LineDotRightHorizontal code version control waypoint stop station last end development navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M 3 12 L 15 12"></path><circle cx="18" cy="12" r="3"></circle></svg><span>LineDotRightHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LineSquiggle.html" title="LineSquiggle line snakes annotate curve doodle stroke pen tool gesture draw wave art road shapes math design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"></path></svg><span>LineSquiggle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LineStyle.html" title="LineStyle line stroke style dashed border design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5h2"></path><path d="M15 12h6"></path><path d="M19 5h2"></path><path d="M3 12h6"></path><path d="M3 19h18"></path><path d="M3 5h2"></path></svg><span>LineStyle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Link2Off.html" title="Link2Off unchain chain text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 17H7A5 5 0 0 1 7 7"></path><path d="M15 7h2a5 5 0 0 1 4 8"></path><line x1="8" x2="12" y1="12" y2="12"></line><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>Link2Off</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Link2.html" title="Link2 chain url text account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 17H7A5 5 0 0 1 7 7h2"></path><path d="M15 7h2a5 5 0 1 1 0 10h-2"></path><line x1="8" x2="16" y1="12" y2="12"></line></svg><span>Link2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Link.html" title="Link chain url text account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg><span>Link</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListCheck.html" title="ListCheck done check tick complete list to-do bom text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M16 12H3"></path><path d="M11 19H3"></path><path d="m15 18 2 2 4-4"></path></svg><span>ListCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListChecks.html" title="ListChecks todo done check tick complete tasks items pending text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 5h8"></path><path d="M13 12h8"></path><path d="M13 19h8"></path><path d="m3 17 2 2 4-4"></path><path d="m3 7 2 2 4-4"></path></svg><span>ListChecks</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListChevronsDownUp.html" title="ListChevronsDownUp options items collapse expand details disclosure show hide toggle accordion more less fold unfold vertical text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5h8"></path><path d="M3 12h8"></path><path d="M3 19h8"></path><path d="m15 5 3 3 3-3"></path><path d="m15 19 3-3 3 3"></path></svg><span>ListChevronsDownUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListChevronsUpDown.html" title="ListChevronsUpDown options items collapse expand details disclosure show hide toggle accordion more less fold unfold vertical text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5h8"></path><path d="M3 12h8"></path><path d="M3 19h8"></path><path d="m15 8 3-3 3 3"></path><path d="m15 16 3 3 3-3"></path></svg><span>ListChevronsUpDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListCollapse.html" title="ListCollapse items collapse expand details disclosure show hide toggle accordion more less fold unfold text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 5h11"></path><path d="M10 12h11"></path><path d="M10 19h11"></path><path d="m3 10 3-3-3-3"></path><path d="m3 20 3-3-3-3"></path></svg><span>ListCollapse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListEnd.html" title="ListEnd queue bottom end playlist multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M16 12H3"></path><path d="M9 19H3"></path><path d="m16 16-3 3 3 3"></path><path d="M21 5v12a2 2 0 0 1-2 2h-6"></path></svg><span>ListEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListFilterPlus.html" title="ListFilterPlus filter plus options add text layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5H2"></path><path d="M6 12h12"></path><path d="M9 19h6"></path><path d="M16 5h6"></path><path d="M19 8V2"></path></svg><span>ListFilterPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListFilter.html" title="ListFilter options text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 5h20"></path><path d="M6 12h12"></path><path d="M9 19h6"></path></svg><span>ListFilter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListIndentDecrease.html" title="ListIndentDecrease text tab text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H11"></path><path d="M21 12H11"></path><path d="M21 19H11"></path><path d="m7 8-4 4 4 4"></path></svg><span>ListIndentDecrease</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListIndentIncrease.html" title="ListIndentIncrease text tab text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H11"></path><path d="M21 12H11"></path><path d="M21 19H11"></path><path d="m3 8 4 4-4 4"></path></svg><span>ListIndentIncrease</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListMinus.html" title="ListMinus playlist remove song subtract delete unqueue multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M11 12H3"></path><path d="M16 19H3"></path><path d="M21 12h-6"></path></svg><span>ListMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListMusic.html" title="ListMusic playlist queue music audio playback multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M11 12H3"></path><path d="M11 19H3"></path><path d="M21 16V5"></path><circle cx="18" cy="16" r="3"></circle></svg><span>ListMusic</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListOrdered.html" title="ListOrdered number order queue text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5h10"></path><path d="M11 12h10"></path><path d="M11 19h10"></path><path d="M4 4h1v5"></path><path d="M4 9h2"></path><path d="M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02"></path></svg><span>ListOrdered</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListPlus.html" title="ListPlus playlist add song track new multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M11 12H3"></path><path d="M16 19H3"></path><path d="M18 9v6"></path><path d="M21 12h-6"></path></svg><span>ListPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListRestart.html" title="ListRestart reset refresh reload playlist replay multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H3"></path><path d="M7 12H3"></path><path d="M7 19H3"></path><path d="M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14"></path><path d="M11 10v4h4"></path></svg><span>ListRestart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListStart.html" title="ListStart queue top start next playlist multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5h6"></path><path d="M3 12h13"></path><path d="M3 19h13"></path><path d="m16 8-3-3 3-3"></path><path d="M21 19V7a2 2 0 0 0-2-2h-6"></path></svg><span>ListStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListTodo.html" title="ListTodo todo done check tick complete tasks items pending text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 5h8"></path><path d="M13 12h8"></path><path d="M13 19h8"></path><path d="m3 17 2 2 4-4"></path><rect height="6" rx="1" width="6" x="3" y="4"></rect></svg><span>ListTodo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListTree.html" title="ListTree tree browser files text layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 5h13"></path><path d="M13 12h8"></path><path d="M13 19h8"></path><path d="M3 10a2 2 0 0 0 2 2h3"></path><path d="M3 5v12a2 2 0 0 0 2 2h3"></path></svg><span>ListTree</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListVideo.html" title="ListVideo playlist video playback multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H3"></path><path d="M10 12H3"></path><path d="M10 19H3"></path><path d="M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"></path></svg><span>ListVideo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ListX.html" title="ListX playlist subtract remove delete unqueue multimedia text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M11 12H3"></path><path d="M16 19H3"></path><path d="m15.5 9.5 5 5"></path><path d="m20.5 9.5-5 5"></path></svg><span>ListX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.List.html" title="List options text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5h.01"></path><path d="M3 12h.01"></path><path d="M3 19h.01"></path><path d="M8 5h13"></path><path d="M8 12h13"></path><path d="M8 19h13"></path></svg><span>List</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LoaderCircle.html" title="LoaderCircle loading wait busy progress spinner spinning throbber circle cursors multimedia layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12a9 9 0 1 1-6.219-8.56"></path></svg><span>LoaderCircle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LoaderPinwheel.html" title="LoaderPinwheel loading wait busy progress throbber spinner spinning beach ball frozen freeze cursors design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0"></path><path d="M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6"></path><path d="M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6"></path><circle cx="12" cy="12" r="10"></circle></svg><span>LoaderPinwheel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Loader.html" title="Loader loading wait busy progress spinner spinning throbber cursors multimedia layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4"></path><path d="m16.2 7.8 2.9-2.9"></path><path d="M18 12h4"></path><path d="m16.2 16.2 2.9 2.9"></path><path d="M12 18v4"></path><path d="m4.9 19.1 2.9-2.9"></path><path d="M2 12h4"></path><path d="m4.9 4.9 2.9 2.9"></path></svg><span>Loader</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LocateFixed.html" title="LocateFixed map gps location cross navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="2" x2="5" y1="12" y2="12"></line><line x1="19" x2="22" y1="12" y2="12"></line><line x1="12" x2="12" y1="2" y2="5"></line><line x1="12" x2="12" y1="19" y2="22"></line><circle cx="12" cy="12" r="7"></circle><circle cx="12" cy="12" r="3"></circle></svg><span>LocateFixed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LocateOff.html" title="LocateOff map gps location cross navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 19v3"></path><path d="M12 2v3"></path><path d="M18.89 13.24a7 7 0 0 0-8.13-8.13"></path><path d="M19 12h3"></path><path d="M2 12h3"></path><path d="m2 2 20 20"></path><path d="M7.05 7.05a7 7 0 0 0 9.9 9.9"></path></svg><span>LocateOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Locate.html" title="Locate map gps location cross navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="2" x2="5" y1="12" y2="12"></line><line x1="19" x2="22" y1="12" y2="12"></line><line x1="12" x2="12" y1="2" y2="5"></line><line x1="12" x2="12" y1="19" y2="22"></line><circle cx="12" cy="12" r="7"></circle></svg><span>Locate</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LockKeyholeOpen.html" title="LockKeyholeOpen security security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="16" r="1"></circle><rect height="12" rx="2" width="18" x="3" y="10"></rect><path d="M7 10V7a5 5 0 0 1 9.33-2.5"></path></svg><span>LockKeyholeOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LockKeyhole.html" title="LockKeyhole security password secure admin security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="16" r="1"></circle><rect height="12" rx="2" width="18" x="3" y="10"></rect><path d="M7 10V7a5 5 0 0 1 10 0v3"></path></svg><span>LockKeyhole</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LockOpen.html" title="LockOpen security security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="11" rx="2" ry="2" width="18" x="3" y="11"></rect><path d="M7 11V7a5 5 0 0 1 9.9-1"></path></svg><span>LockOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Lock.html" title="Lock security password secure admin security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="11" rx="2" ry="2" width="18" x="3" y="11"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg><span>Lock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LogIn.html" title="LogIn sign in arrow enter auth arrows account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 17 5-5-5-5"></path><path d="M15 12H3"></path><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path></svg><span>LogIn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.LogOut.html" title="LogOut sign out arrow exit auth arrows account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 17 5-5-5-5"></path><path d="M21 12H9"></path><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path></svg><span>LogOut</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Logs.html" title="Logs options list menu order queue tasks logs text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5h1"></path><path d="M3 12h1"></path><path d="M3 19h1"></path><path d="M8 5h1"></path><path d="M8 12h1"></path><path d="M8 19h1"></path><path d="M13 5h8"></path><path d="M13 12h8"></path><path d="M13 19h8"></path></svg><span>Logs</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Lollipop.html" title="Lollipop lolly candy sugar food sweet dessert spiral food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><path d="m21 21-4.3-4.3"></path><path d="M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0"></path></svg><span>Lollipop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Luggage.html" title="Luggage baggage luggage travel suitcase travel transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2"></path><path d="M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"></path><path d="M10 20h4"></path><circle cx="16" cy="20" r="2"></circle><circle cx="8" cy="20" r="2"></circle></svg><span>Luggage</span></a>
</div>
<h3>M</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Magnet.html" title="Magnet horseshoe lock science snap design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 15 4 4"></path><path d="M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z"></path><path d="m5 8 4 4"></path></svg><span>Magnet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailCheck.html" title="MailCheck email message letter subscribe delivered success read done todo tick complete task mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="m16 19 2 2 4-4"></path></svg><span>MailCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailMinus.html" title="MailMinus email message letter remove delete mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="M16 19h6"></path></svg><span>MailMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailOpen.html" title="MailOpen email message letter read mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"></path><path d="m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"></path></svg><span>MailOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailPlus.html" title="MailPlus email message letter add create new compose mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="M19 16v6"></path><path d="M16 19h6"></path></svg><span>MailPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailQuestionMark.html" title="MailQuestionMark email message letter delivery undelivered mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"></path><path d="M20 22v.01"></path></svg><span>MailQuestionMark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailSearch.html" title="MailSearch email message letter search lens mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"></path><circle cx="18" cy="18" r="3"></circle><path d="m22 22-1.5-1.5"></path></svg><span>MailSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailWarning.html" title="MailWarning email message letter delivery error exclamation mark mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="M20 14v4"></path><path d="M20 22v.01"></path></svg><span>MailWarning</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MailX.html" title="MailX email message letter remove delete mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"></path><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path><path d="m17 17 4 4"></path><path d="m21 17-4 4"></path></svg><span>MailX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mail.html" title="Mail email message letter unread text account mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"></path><rect height="16" rx="2" width="20" x="2" y="4"></rect></svg><span>Mail</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mailbox.html" title="Mailbox emails messages letters mailing list newsletter mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z"></path><polyline points="15,9 18,9 18,11"></polyline><path d="M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2"></path><line x1="6" x2="7" y1="10" y2="10"></line></svg><span>Mailbox</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mails.html" title="Mails emails messages letters multiple mailing list newsletter copy mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732"></path><path d="m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5"></path><rect height="12" rx="2" width="15" x="7" y="3"></rect></svg><span>Mails</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapMinus.html" title="MapMinus location navigation travel drop delete remove erase navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14"></path><path d="M15 5.764V14"></path><path d="M21 18h-6"></path><path d="M9 3.236v15"></path></svg><span>MapMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinCheckInside.html" title="MapPinCheckInside location waypoint marker drop done tick complete task added navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><path d="m9 10 2 2 4-4"></path></svg><span>MapPinCheckInside</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinCheck.html" title="MapPinCheck location waypoint marker drop done tick complete task added navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728"></path><circle cx="12" cy="10" r="3"></circle><path d="m16 18 2 2 4-4"></path></svg><span>MapPinCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinHouse.html" title="MapPinHouse location waypoint marker drop home living building residence architecture address poi real estate property navigation destination geolocation place landmark navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z"></path><path d="M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2"></path><path d="M18 22v-3"></path><circle cx="10" cy="10" r="3"></circle></svg><span>MapPinHouse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinMinusInside.html" title="MapPinMinusInside location waypoint marker drop delete remove erase navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><path d="M9 10h6"></path></svg><span>MapPinMinusInside</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinMinus.html" title="MapPinMinus location waypoint marker drop delete remove erase navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"></path><circle cx="12" cy="10" r="3"></circle><path d="M16 18h6"></path></svg><span>MapPinMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinOff.html" title="MapPinOff location waypoint marker remove navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.75 7.09a3 3 0 0 1 2.16 2.16"></path><path d="M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568"></path><path d="m2 2 20 20"></path><path d="M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533"></path><path d="M9.13 9.13a3 3 0 0 0 3.74 3.74"></path></svg><span>MapPinOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinPen.html" title="MapPinPen location waypoint marker drop edit navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468"></path><path d="M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path><circle cx="10" cy="10" r="3"></circle></svg><span>MapPinPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinPlusInside.html" title="MapPinPlusInside location waypoint marker drop add create new navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><path d="M12 7v6"></path><path d="M9 10h6"></path></svg><span>MapPinPlusInside</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinPlus.html" title="MapPinPlus location waypoint marker drop add create new navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"></path><circle cx="12" cy="10" r="3"></circle><path d="M16 18h6"></path><path d="M19 15v6"></path></svg><span>MapPinPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinSearch.html" title="MapPinSearch location navigation travel waypoint marker drop text navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M 12.248 21.969 a 1 1 0 0 1 -0.849 -0.17 C 9.539 20.193 4 14.993 4 10 a 8 8 0 0 1 16 0 C 20 10.42 19.961 10.841 19.888 11.262"></path><path d="m22 22-1.88-1.88"></path><circle cx="12" cy="10" r="3"></circle><circle cx="18" cy="18" r="3"></circle></svg><span>MapPinSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinXInside.html" title="MapPinXInside location waypoint marker drop delete remove erase navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><path d="m14.5 7.5-5 5"></path><path d="m9.5 7.5 5 5"></path></svg><span>MapPinXInside</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinX.html" title="MapPinX location waypoint marker drop delete remove erase navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"></path><circle cx="12" cy="10" r="3"></circle><path d="m21.5 15.5-5 5"></path><path d="m21.5 20.5-5-5"></path></svg><span>MapPinX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPin.html" title="MapPin location waypoint marker drop navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"></path><circle cx="12" cy="10" r="3"></circle></svg><span>MapPin</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPinned.html" title="MapPinned location waypoint marker drop navigation travel account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0"></path><circle cx="12" cy="8" r="2"></circle><path d="M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712"></path></svg><span>MapPinned</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MapPlus.html" title="MapPlus location navigation travel new add create navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12"></path><path d="M15 5.764V12"></path><path d="M18 15v6"></path><path d="M21 18h-6"></path><path d="M9 3.236v15"></path></svg><span>MapPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Map.html" title="Map location navigation travel text navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z"></path><path d="M15 5.764v15"></path><path d="M9 3.236v15"></path></svg><span>Map</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MarsStroke.html" title="MarsStroke gender androgyne transgender medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 6 4 4"></path><path d="M17 3h4v4"></path><path d="m21 3-7.75 7.75"></path><circle cx="9" cy="15" r="6"></circle></svg><span>MarsStroke</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mars.html" title="Mars gender sex male masculine man boy medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3h5v5"></path><path d="m21 3-6.75 6.75"></path><circle cx="10" cy="14" r="6"></circle></svg><span>Mars</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Martini.html" title="Martini cocktail alcohol beverage bar drink glass food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 22h8"></path><path d="M12 11v11"></path><path d="m19 3-7 8-7-8Z"></path></svg><span>Martini</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Maximize2.html" title="Maximize2 fullscreen arrows expand arrows layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h6v6"></path><path d="m21 3-7 7"></path><path d="m3 21 7-7"></path><path d="M9 21H3v-6"></path></svg><span>Maximize2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Maximize.html" title="Maximize fullscreen expand dashed layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H5a2 2 0 0 0-2 2v3"></path><path d="M21 8V5a2 2 0 0 0-2-2h-3"></path><path d="M3 16v3a2 2 0 0 0 2 2h3"></path><path d="M16 21h3a2 2 0 0 0 2-2v-3"></path></svg><span>Maximize</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Medal.html" title="Medal prize sports winner trophy award achievement sports gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"></path><path d="M11 12 5.12 2.2"></path><path d="m13 12 5.88-9.8"></path><path d="M8 7h8"></path><circle cx="12" cy="17" r="5"></circle><path d="M12 18v-2h-.5"></path></svg><span>Medal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MegaphoneOff.html" title="MegaphoneOff advertisement announcement attention alert loudspeaker megaphone notification disable silent multimedia notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344"></path><path d="M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1"></path><path d="m2 2 20 20"></path><path d="M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"></path><path d="M8 8v6"></path></svg><span>MegaphoneOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Megaphone.html" title="Megaphone advertisement announcement attention alert loudspeaker megaphone notification multimedia notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"></path><path d="M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"></path><path d="M8 6v8"></path></svg><span>Megaphone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Meh.html" title="Meh emoji face neutral emotion emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="8" x2="16" y1="15" y2="15"></line><line x1="9" x2="9.01" y1="9" y2="9"></line><line x1="15" x2="15.01" y1="9" y2="9"></line></svg><span>Meh</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MemoryStick.html" title="MemoryStick ram random access technology computer chip circuit specs capacity gigabytes gb devices gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12v-2"></path><path d="M12 18v-2"></path><path d="M16 12v-2"></path><path d="M16 18v-2"></path><path d="M2 11h1.5"></path><path d="M20 18v-2"></path><path d="M20.5 11H22"></path><path d="M4 18v-2"></path><path d="M8 12v-2"></path><path d="M8 18v-2"></path><rect height="10" rx="2" width="20" x="2" y="6"></rect></svg><span>MemoryStick</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Menu.html" title="Menu bars navigation hamburger options layout account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 5h16"></path><path d="M4 12h16"></path><path d="M4 19h16"></path></svg><span>Menu</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Merge.html" title="Merge combine join unite development arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m8 6 4-4 4 4"></path><path d="M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22"></path><path d="m20 22-5-5"></path></svg><span>Merge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleCheck.html" title="MessageCircleCheck comment chat conversation dialog feedback speech bubble moderate check done todo complete social account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="m9 12 2 2 4-4"></path></svg><span>MessageCircleCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleCode.html" title="MessageCircleCode comment chat conversation dialog feedback speech bubble code review coding development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 9-3 3 3 3"></path><path d="m14 15 3-3-3-3"></path><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path></svg><span>MessageCircleCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleDashed.html" title="MessageCircleDashed comment chat conversation dialog feedback speech bubble draft social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.1 2.182a10 10 0 0 1 3.8 0"></path><path d="M13.9 21.818a10 10 0 0 1-3.8 0"></path><path d="M17.609 3.72a10 10 0 0 1 2.69 2.7"></path><path d="M2.182 13.9a10 10 0 0 1 0-3.8"></path><path d="M20.28 17.61a10 10 0 0 1-2.7 2.69"></path><path d="M21.818 10.1a10 10 0 0 1 0 3.8"></path><path d="M3.721 6.391a10 10 0 0 1 2.7-2.69"></path><path d="m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98"></path></svg><span>MessageCircleDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleHeart.html" title="MessageCircleHeart comment chat conversation dialog feedback positive like love interest valentine dating date speech bubble social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z"></path></svg><span>MessageCircleHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleMore.html" title="MessageCircleMore comment chat conversation dialog feedback speech bubble typing writing responding ellipsis etc et cetera ... … social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="M8 12h.01"></path><path d="M12 12h.01"></path><path d="M16 12h.01"></path></svg><span>MessageCircleMore</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleOff.html" title="MessageCircleOff comment chat conversation dialog feedback speech bubble clear close delete remove cancel silence mute moderate social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 2 20 20"></path><path d="M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989"></path><path d="M8.35 2.69A10 10 0 0 1 21.3 15.65"></path></svg><span>MessageCircleOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCirclePlus.html" title="MessageCirclePlus comment chat conversation dialog feedback speech bubble add social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="M8 12h8"></path><path d="M12 8v8"></path></svg><span>MessageCirclePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleQuestionMark.html" title="MessageCircleQuestionMark comment chat conversation dialog feedback speech bubble help social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><path d="M12 17h.01"></path></svg><span>MessageCircleQuestionMark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleReply.html" title="MessageCircleReply comment chat conversation dialog feedback speech bubble reply response social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="m10 15-3-3 3-3"></path><path d="M7 12h8a2 2 0 0 1 2 2v1"></path></svg><span>MessageCircleReply</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleWarning.html" title="MessageCircleWarning comment chat conversation dialog feedback speech bubble report abuse offense alert danger caution protected exclamation mark social notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="M12 8v4"></path><path d="M12 16h.01"></path></svg><span>MessageCircleWarning</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircleX.html" title="MessageCircleX comment chat conversation dialog feedback speech bubble clear close delete remove cancel silence mute moderate account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path><path d="m15 9-6 6"></path><path d="m9 9 6 6"></path></svg><span>MessageCircleX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageCircle.html" title="MessageCircle comment chat conversation dialog feedback speech bubble social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"></path></svg><span>MessageCircle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareCheck.html" title="MessageSquareCheck comment chat conversation dialog feedback speech bubble moderate check done todo complete social account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="m9 11 2 2 4-4"></path></svg><span>MessageSquareCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareCode.html" title="MessageSquareCode comment chat conversation dialog feedback speech bubble code review coding development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="m10 8-3 3 3 3"></path><path d="m14 14 3-3-3-3"></path></svg><span>MessageSquareCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareDashed.html" title="MessageSquareDashed comment chat conversation dialog feedback speech bubble draft social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 3h2"></path><path d="M16 19h-2"></path><path d="M2 12v-2"></path><path d="M2 16v5.286a.71.71 0 0 0 1.212.502l1.149-1.149"></path><path d="M20 19a2 2 0 0 0 2-2v-1"></path><path d="M22 10v2"></path><path d="M22 6V5a2 2 0 0 0-2-2"></path><path d="M4 3a2 2 0 0 0-2 2v1"></path><path d="M8 19h2"></path><path d="M8 3h2"></path></svg><span>MessageSquareDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareDiff.html" title="MessageSquareDiff comment chat conversation dialog feedback speech bubble add patch difference plus minus plus-minus math code review coding version control git development files social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M10 15h4"></path><path d="M10 9h4"></path><path d="M12 7v4"></path></svg><span>MessageSquareDiff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareDot.html" title="MessageSquareDot unread unresolved comment chat conversation dialog feedback speech bubble social notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7"></path><circle cx="19" cy="6" r="3"></circle></svg><span>MessageSquareDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareHeart.html" title="MessageSquareHeart comment chat conversation dialog feedback positive like love interest valentine dating date speech bubble social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5"></path></svg><span>MessageSquareHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareLock.html" title="MessageSquareLock comment chat conversation dialog feedback speech bubble secure encrypted social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10"></path><path d="M20 15v-2a2 2 0 0 0-4 0v2"></path><rect height="5" rx="1" width="8" x="14" y="15"></rect></svg><span>MessageSquareLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareMore.html" title="MessageSquareMore comment chat conversation dialog feedback speech bubble typing writing responding ellipsis etc et cetera ... … social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M12 11h.01"></path><path d="M16 11h.01"></path><path d="M8 11h.01"></path></svg><span>MessageSquareMore</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareOff.html" title="MessageSquareOff comment chat conversation dialog feedback speech bubble clear close delete remove cancel silence mute moderate social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826"></path><path d="m2 2 20 20"></path><path d="M8.656 3H20a2 2 0 0 1 2 2v11.344"></path></svg><span>MessageSquareOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquarePlus.html" title="MessageSquarePlus comment chat conversation dialog feedback speech bubble add social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M12 8v6"></path><path d="M9 11h6"></path></svg><span>MessageSquarePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareQuote.html" title="MessageSquareQuote comment chat conversation dialog feedback speech bubble blockquote quotation indent reply response social text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 14a2 2 0 0 0 2-2V8h-2"></path><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M8 14a2 2 0 0 0 2-2V8H8"></path></svg><span>MessageSquareQuote</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareReply.html" title="MessageSquareReply comment chat conversation dialog feedback speech bubble reply response social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="m10 8-3 3 3 3"></path><path d="M17 14v-1a2 2 0 0 0-2-2H7"></path></svg><span>MessageSquareReply</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareShare.html" title="MessageSquareShare comment chat conversation dialog feedback speech bubble network forward social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4"></path><path d="M16 3h6v6"></path><path d="m16 9 6-6"></path></svg><span>MessageSquareShare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareText.html" title="MessageSquareText comment chat conversation dialog feedback speech bubble social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M7 11h10"></path><path d="M7 15h6"></path><path d="M7 7h8"></path></svg><span>MessageSquareText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareWarning.html" title="MessageSquareWarning comment chat conversation dialog feedback speech bubble report abuse offense alert danger caution protected exclamation mark social notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="M12 15h.01"></path><path d="M12 7v4"></path></svg><span>MessageSquareWarning</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquareX.html" title="MessageSquareX comment chat conversation dialog feedback speech bubble clear close delete remove cancel silence mute moderate social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path><path d="m14.5 8.5-5 5"></path><path d="m9.5 8.5 5 5"></path></svg><span>MessageSquareX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessageSquare.html" title="MessageSquare comment chat conversation dialog feedback speech bubble social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"></path></svg><span>MessageSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MessagesSquare.html" title="MessagesSquare comment chat conversation dialog feedback speech bubbles copy multiple discussion interview debate social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"></path><path d="M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1"></path></svg><span>MessagesSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Metronome.html" title="Metronome metronome tempo rhythm beat bpm music audio sound practice timing timer time pulse sync cadence control playback studio tool multimedia time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 11.4V9.1"></path><path d="m12 17 6.59-6.59"></path><path d="m15.05 5.7-.218-.691a3 3 0 0 0-5.663 0L4.418 19.695A1 1 0 0 0 5.37 21h13.253a1 1 0 0 0 .951-1.31L18.45 16.2"></path><circle cx="20" cy="9" r="2"></circle></svg><span>Metronome</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MicOff.html" title="MicOff record sound mute microphone devices communication connectivity multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 19v3"></path><path d="M15 9.34V5a3 3 0 0 0-5.68-1.33"></path><path d="M16.95 16.95A7 7 0 0 1 5 12v-2"></path><path d="M18.89 13.23A7 7 0 0 0 19 12v-2"></path><path d="m2 2 20 20"></path><path d="M9 9v3a3 3 0 0 0 5.12 2.12"></path></svg><span>MicOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MicVocal.html" title="MicVocal lyrics voice listen sound music radio podcast karaoke singing microphone devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12"></path><path d="M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5"></path><circle cx="16" cy="7" r="5"></circle></svg><span>MicVocal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mic.html" title="Mic record sound listen radio podcast microphone devices communication connectivity multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 19v3"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><rect height="13" rx="3" width="6" x="9" y="2"></rect></svg><span>Mic</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Microchip.html" title="Microchip processor cores technology computer chip integrated circuit memory ram specs gpu gigahertz ghz devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12h4"></path><path d="M10 17h4"></path><path d="M10 7h4"></path><path d="M18 12h2"></path><path d="M18 18h2"></path><path d="M18 6h2"></path><path d="M4 12h2"></path><path d="M4 18h2"></path><path d="M4 6h2"></path><rect height="20" rx="2" width="12" x="6" y="2"></rect></svg><span>Microchip</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Microscope.html" title="Microscope medical education science imaging research science medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg><span>Microscope</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Microwave.html" title="Microwave oven cooker toaster oven bake food-beverage home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="15" rx="2" width="20" x="2" y="4"></rect><rect height="7" rx="1" width="8" x="6" y="8"></rect><path d="M18 8v7"></path><path d="M6 19v2"></path><path d="M18 19v2"></path></svg><span>Microwave</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Milestone.html" title="Milestone signpost direction right east forward version control waypoint arrows navigation development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v8"></path><path d="M12 3v3"></path><path d="M18.172 6a2 2 0 0 1 1.414.586l2.06 2.06a1.207 1.207 0 0 1 0 1.708l-2.06 2.06a2 2 0 0 1-1.414.586H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1z"></path></svg><span>Milestone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MilkOff.html" title="MilkOff lactose free bottle beverage drink water allergy intolerance diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2h8"></path><path d="M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"></path><path d="M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>MilkOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Milk.html" title="Milk lactose bottle beverage drink water diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2h8"></path><path d="M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"></path><path d="M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"></path></svg><span>Milk</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Minimize2.html" title="Minimize2 exit fullscreen arrows close shrink arrows layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 10 7-7"></path><path d="M20 10h-6V4"></path><path d="m3 21 7-7"></path><path d="M4 14h6v6"></path></svg><span>Minimize2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Minimize.html" title="Minimize exit fullscreen close shrink layout design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3v3a2 2 0 0 1-2 2H3"></path><path d="M21 8h-3a2 2 0 0 1-2-2V3"></path><path d="M3 16h3a2 2 0 0 1 2 2v3"></path><path d="M16 21v-3a2 2 0 0 1 2-2h3"></path></svg><span>Minimize</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Minus.html" title="Minus subtract remove decrease decrement reduce negative calculate line divider separator horizontal rule hr html markup markdown --- toolbar operator code coding minimum downgrade math development text tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"></path></svg><span>Minus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MirrorRectangular.html" title="MirrorRectangular reflection optics glass surface image physics science bathroom decor cosmetic shiny periscope vanity science home tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 6 8 9"></path><path d="m16 7-8 8"></path><rect height="20" rx="2" width="16" x="4" y="2"></rect></svg><span>MirrorRectangular</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MirrorRound.html" title="MirrorRound reflection optics glass surface image physics science bathroom vanity makeup decor cosmetic shiny periscope science home tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 6.6 8.6 8"></path><path d="M12 18v4"></path><path d="M15 7.5 9.5 13"></path><path d="M7 22h10"></path><circle cx="12" cy="10" r="8"></circle></svg><span>MirrorRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorCheck.html" title="MonitorCheck tv screen display desktop running active virtual machine vm connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 10 2 2 4-4"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect><path d="M12 17v4"></path><path d="M8 21h8"></path></svg><span>MonitorCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorCloud.html" title="MonitorCloud virtual machine virtual desktop vm vdi computing remote work monitoring infrastructure software as a service saas workstation environment tv screen display connectivity devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z"></path><path d="M12 17v4"></path><path d="M8 21h8"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect></svg><span>MonitorCloud</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorCog.html" title="MonitorCog tv screen display virtual machine vm executable settings cog edit gear configuration preferences system control panel network computing connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v4"></path><path d="m14.305 7.53.923-.382"></path><path d="m15.228 4.852-.923-.383"></path><path d="m16.852 3.228-.383-.924"></path><path d="m16.852 8.772-.383.923"></path><path d="m19.148 3.228.383-.924"></path><path d="m19.53 9.696-.382-.924"></path><path d="m20.772 4.852.924-.383"></path><path d="m20.772 7.148.924.383"></path><path d="M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"></path><path d="M8 21h8"></path><circle cx="18" cy="6" r="3"></circle></svg><span>MonitorCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorDot.html" title="MonitorDot tv screen display desktop running active virtual machine vm connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v4"></path><path d="M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693"></path><path d="M8 21h8"></path><circle cx="19" cy="6" r="3"></circle></svg><span>MonitorDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorDown.html" title="MonitorDown tv screen display desktop download connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13V7"></path><path d="m15 10-3 3-3-3"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect><path d="M12 17v4"></path><path d="M8 21h8"></path></svg><span>MonitorDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorOff.html" title="MonitorOff share connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v4"></path><path d="M17 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 1.184-1.826"></path><path d="m2 2 20 20"></path><path d="M8 21h8"></path><path d="M8.656 3H20a2 2 0 0 1 2 2v10a2 2 0 0 1-.293 1.042"></path></svg><span>MonitorOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorPause.html" title="MonitorPause tv screen display desktop video movie film suspend hibernate boot virtual machine vm connectivity devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13V7"></path><path d="M14 13V7"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect><path d="M12 17v4"></path><path d="M8 21h8"></path></svg><span>MonitorPause</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorPlay.html" title="MonitorPlay tv screen display desktop video movie film running start boot virtual machine vm connectivity devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"></path><path d="M12 17v4"></path><path d="M8 21h8"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect></svg><span>MonitorPlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorSmartphone.html" title="MonitorSmartphone smartphone phone cellphone device mobile desktop monitor responsive screens connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"></path><path d="M10 19v-3.96 3.15"></path><path d="M7 19h5"></path><rect height="10" rx="2" width="6" x="16" y="12"></rect></svg><span>MonitorSmartphone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorSpeaker.html" title="MonitorSpeaker devices connect cast connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5.5 20H8"></path><path d="M17 9h.01"></path><rect height="16" rx="2" width="10" x="12" y="4"></rect><path d="M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"></path><circle cx="17" cy="15" r="1"></circle></svg><span>MonitorSpeaker</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorStop.html" title="MonitorStop tv screen display desktop video movie film stop shutdown virtual machine vm connectivity devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v4"></path><path d="M8 21h8"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect><rect height="6" rx="1" width="6" x="9" y="7"></rect></svg><span>MonitorStop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorUp.html" title="MonitorUp tv screen display upload connect remote screen share connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 10 3-3 3 3"></path><path d="M12 13V7"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect><path d="M12 17v4"></path><path d="M8 21h8"></path></svg><span>MonitorUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MonitorX.html" title="MonitorX tv screen display desktop virtual machine vm close stop suspend remove delete connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.5 12.5-5-5"></path><path d="m9.5 12.5 5-5"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect><path d="M12 17v4"></path><path d="M8 21h8"></path></svg><span>MonitorX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Monitor.html" title="Monitor tv screen display virtual machine vm connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="20" x="2" y="3"></rect><line x1="8" x2="16" y1="21" y2="21"></line><line x1="12" x2="12" y1="17" y2="21"></line></svg><span>Monitor</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoonStar.html" title="MoonStar dark night star accessibility weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 5h4"></path><path d="M20 3v4"></path><path d="M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"></path></svg><span>MoonStar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Moon.html" title="Moon dark night accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"></path></svg><span>Moon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Motorbike.html" title="Motorbike moto motorcycle transport vehicle drive ride trip race racing journey delivery transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 14-1-3"></path><path d="m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81"></path><path d="M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5"></path><circle cx="19" cy="17" r="3"></circle><circle cx="5" cy="17" r="3"></circle></svg><span>Motorbike</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MountainSnow.html" title="MountainSnow alpine climb snow nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m8 3 4 8 5-5 5 15H2L8 3z"></path><path d="M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"></path></svg><span>MountainSnow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mountain.html" title="Mountain climb hike rock nature gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m8 3 4 8 5-5 5 15H2L8 3z"></path></svg><span>Mountain</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MouseLeft.html" title="MouseLeft device scroll click devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7.318V10"></path><path d="M5 10v5a7 7 0 0 0 14 0V9c0-3.527-2.608-6.515-6-7"></path><circle cx="7" cy="4" r="2"></circle></svg><span>MouseLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MouseOff.html" title="MouseOff device scroll click disabled devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6v.343"></path><path d="M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218"></path><path d="M19 13.343V9A7 7 0 0 0 8.56 2.902"></path><path d="M22 22 2 2"></path></svg><span>MouseOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MousePointer2Off.html" title="MousePointer2Off pointer mouse cursor off disable arrow navigation selection select click no-click interaction arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.55 8.45 5.138 2.087a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063L8.45 15.551"></path><path d="M22 2 2 22"></path><path d="m6.816 11.528-2.779-6.84a.495.495 0 0 1 .651-.651l6.84 2.779"></path></svg><span>MousePointer2Off</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MousePointer2.html" title="MousePointer2 click select arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z"></path></svg><span>MousePointer2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MousePointerBan.html" title="MousePointerBan wait busy loading blocked frozen freeze arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z"></path><circle cx="16" cy="16" r="6"></circle><path d="m11.8 11.8 8.4 8.4"></path></svg><span>MousePointerBan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MousePointerClick.html" title="MousePointerClick click select arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 4.1 12 6"></path><path d="m5.1 8-2.9-.8"></path><path d="m6 12-1.9 2"></path><path d="M7.2 2.2 8 5.1"></path><path d="M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z"></path></svg><span>MousePointerClick</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MousePointer.html" title="MousePointer click select arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.586 12.586 19 19"></path><path d="M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z"></path></svg><span>MousePointer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MouseRight.html" title="MouseRight device scroll click devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7.318V10"></path><path d="M19 10v5a7 7 0 0 1-14 0V9c0-3.527 2.608-6.515 6-7"></path><circle cx="17" cy="4" r="2"></circle></svg><span>MouseRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Mouse.html" title="Mouse device scroll click devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="7" width="14" x="5" y="2"></rect><path d="M12 6v4"></path></svg><span>Mouse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Move3d.html" title="Move3d arrows axis gizmo coordinates transform translate design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 3v16h16"></path><path d="m5 19 6-6"></path><path d="m2 6 3-3 3 3"></path><path d="m18 16 3 3-3 3"></path></svg><span>Move3d</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveDiagonal2.html" title="MoveDiagonal2 double arrow arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 13v6h-6"></path><path d="M5 11V5h6"></path><path d="m5 5 14 14"></path></svg><span>MoveDiagonal2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveDiagonal.html" title="MoveDiagonal double arrow arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 19H5v-6"></path><path d="M13 5h6v6"></path><path d="M19 5 5 19"></path></svg><span>MoveDiagonal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveDownLeft.html" title="MoveDownLeft arrow direction arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 19H5V13"></path><path d="M19 5L5 19"></path></svg><span>MoveDownLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveDownRight.html" title="MoveDownRight arrow direction arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 13V19H13"></path><path d="M5 5L19 19"></path></svg><span>MoveDownRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveDown.html" title="MoveDown arrow direction downwards south arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 18L12 22L16 18"></path><path d="M12 2V22"></path></svg><span>MoveDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveHorizontal.html" title="MoveHorizontal double arrow arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 8 4 4-4 4"></path><path d="M2 12h20"></path><path d="m6 8-4 4 4 4"></path></svg><span>MoveHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveLeft.html" title="MoveLeft arrow direction back west arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 8L2 12L6 16"></path><path d="M2 12H22"></path></svg><span>MoveLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveRight.html" title="MoveRight arrow direction trend flat east arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 8L22 12L18 16"></path><path d="M2 12H22"></path></svg><span>MoveRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveUpLeft.html" title="MoveUpLeft arrow direction arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 11V5H11"></path><path d="M5 5L19 19"></path></svg><span>MoveUpLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveUpRight.html" title="MoveUpRight arrow direction arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 5H19V11"></path><path d="M19 5L5 19"></path></svg><span>MoveUpRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveUp.html" title="MoveUp arrow direction upwards north arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 6L12 2L16 6"></path><path d="M12 2V22"></path></svg><span>MoveUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.MoveVertical.html" title="MoveVertical double arrow arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v20"></path><path d="m8 18 4 4 4-4"></path><path d="m8 6 4-4 4 4"></path></svg><span>MoveVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Move.html" title="Move arrows arrows cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v20"></path><path d="m15 19-3 3-3-3"></path><path d="m19 9 3 3-3 3"></path><path d="M2 12h20"></path><path d="m5 9-3 3 3 3"></path><path d="m9 5 3-3 3 3"></path></svg><span>Move</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Music2.html" title="Music2 quaver eighth note note multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="8" cy="18" r="4"></circle><path d="M12 18V2l7 4"></path></svg><span>Music2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Music3.html" title="Music3 crotchet minim quarter note half note note multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="18" r="4"></circle><path d="M16 18V2"></path></svg><span>Music3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Music4.html" title="Music4 semiquaver sixteenth note note multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18V5l12-2v13"></path><path d="m9 9 12-2"></path><circle cx="6" cy="18" r="3"></circle><circle cx="18" cy="16" r="3"></circle></svg><span>Music4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Music.html" title="Music note quaver eighth note multimedia files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18V5l12-2v13"></path><circle cx="6" cy="18" r="3"></circle><circle cx="18" cy="16" r="3"></circle></svg><span>Music</span></a>
</div>
<h3>N</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Navigation2Off.html" title="Navigation2Off location travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9.31 9.31 5 21l7-4 7 4-1.17-3.17"></path><path d="M14.53 8.88 12 2l-1.17 3.17"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>Navigation2Off</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Navigation2.html" title="Navigation2 location travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 19 21 12 17 5 21 12 2"></polygon></svg><span>Navigation2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NavigationOff.html" title="NavigationOff location travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.43 8.43 3 11l8 2 2 8 2.57-5.43"></path><path d="M17.39 11.73 22 2l-9.73 4.61"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>NavigationOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Navigation.html" title="Navigation location travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="3 11 22 2 13 21 11 13 3 11"></polygon></svg><span>Navigation</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Network.html" title="Network tree development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="1" width="6" x="16" y="16"></rect><rect height="6" rx="1" width="6" x="2" y="16"></rect><rect height="6" rx="1" width="6" x="9" y="2"></rect><path d="M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3"></path><path d="M12 12V8"></path></svg><span>Network</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Newspaper.html" title="Newspaper news feed home magazine article headline multimedia communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 18h-5"></path><path d="M18 14h-8"></path><path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"></path><rect height="4" rx="1" width="8" x="10" y="6"></rect></svg><span>Newspaper</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Nfc.html" title="Nfc contactless payment near-field communication communication finance devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 8.32a7.43 7.43 0 0 1 0 7.36"></path><path d="M9.46 6.21a11.76 11.76 0 0 1 0 11.58"></path><path d="M12.91 4.1a15.91 15.91 0 0 1 .01 15.8"></path><path d="M16.37 2a20.16 20.16 0 0 1 0 20"></path></svg><span>Nfc</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NonBinary.html" title="NonBinary gender nonbinary enby medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v10"></path><path d="m8.5 4 7 4"></path><path d="m8.5 8 7-4"></path><circle cx="12" cy="17" r="5"></circle></svg><span>NonBinary</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NotebookPen.html" title="NotebookPen pencil notepad notes noted stationery sketchbook organizer organiser planner diary journal writing write written reading high school university college academy student study research homework eraser rubber text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4"></path><path d="M2 6h4"></path><path d="M2 10h4"></path><path d="M2 14h4"></path><path d="M2 18h4"></path><path d="M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path></svg><span>NotebookPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NotebookTabs.html" title="NotebookTabs notepad notes people family friends acquaintances contacts details addresses phone numbers directory listing networking alphabetical a-z organizer organiser planner diary stationery account communication social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 6h4"></path><path d="M2 10h4"></path><path d="M2 14h4"></path><path d="M2 18h4"></path><rect height="20" rx="2" width="16" x="4" y="2"></rect><path d="M15 2v20"></path><path d="M15 7h5"></path><path d="M15 12h5"></path><path d="M15 17h5"></path></svg><span>NotebookTabs</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NotebookText.html" title="NotebookText notepad notes pages paper stationery sketchbook organizer organiser planner diary journal writing write written reading high school university college academy student study research homework lines opened text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 6h4"></path><path d="M2 10h4"></path><path d="M2 14h4"></path><path d="M2 18h4"></path><rect height="20" rx="2" width="16" x="4" y="2"></rect><path d="M9.5 8h5"></path><path d="M9.5 12H16"></path><path d="M9.5 16H14"></path></svg><span>NotebookText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Notebook.html" title="Notebook notepad notes stationery sketchbook moleskine closure strap band elastic organizer organiser planner diary journal writing written writer reading high school university college academy student study homework research text communication social design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 6h4"></path><path d="M2 10h4"></path><path d="M2 14h4"></path><path d="M2 18h4"></path><rect height="20" rx="2" width="16" x="4" y="2"></rect><path d="M16 2v20"></path></svg><span>Notebook</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NotepadTextDashed.html" title="NotepadTextDashed notebook notes pages paper stationery diary journal writing write written draft template lines text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M12 2v4"></path><path d="M16 2v4"></path><path d="M16 4h2a2 2 0 0 1 2 2v2"></path><path d="M20 12v2"></path><path d="M20 18v2a2 2 0 0 1-2 2h-1"></path><path d="M13 22h-2"></path><path d="M7 22H6a2 2 0 0 1-2-2v-2"></path><path d="M4 14v-2"></path><path d="M4 8V6a2 2 0 0 1 2-2h2"></path><path d="M8 10h6"></path><path d="M8 14h8"></path><path d="M8 18h5"></path></svg><span>NotepadTextDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NotepadText.html" title="NotepadText notebook notes pages paper stationery sketchbook organizer organiser planner diary journal writing write written reading high school university college academy student study homework research lines opened text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2v4"></path><path d="M12 2v4"></path><path d="M16 2v4"></path><rect height="18" rx="2" width="16" x="4" y="4"></rect><path d="M8 10h6"></path><path d="M8 14h8"></path><path d="M8 18h5"></path></svg><span>NotepadText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.NutOff.html" title="NutOff hazelnut acorn food allergy intolerance diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4V2"></path><path d="M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"></path><path d="M19 10v3.343"></path><path d="M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>NutOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Nut.html" title="Nut hazelnut acorn food diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4V2"></path><path d="M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"></path><path d="M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"></path></svg><span>Nut</span></a>
</div>
<h3>O</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.OctagonAlert.html" title="OctagonAlert warning alert danger exclamation mark notifications shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 16h.01"></path><path d="M12 8v4"></path><path d="M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z"></path></svg><span>OctagonAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.OctagonMinus.html" title="OctagonMinus stop forbidden subtract remove decrease reduce - traffic halt restricted transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"></path><path d="M8 12h8"></path></svg><span>OctagonMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.OctagonPause.html" title="OctagonPause music audio stop multimedia shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 15V9"></path><path d="M14 15V9"></path><path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"></path></svg><span>OctagonPause</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.OctagonX.html" title="OctagonX delete stop alert warning times clear math math notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 9-6 6"></path><path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"></path><path d="m9 9 6 6"></path></svg><span>OctagonX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Octagon.html" title="Octagon stop shape shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"></path></svg><span>Octagon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Omega.html" title="Omega greek symbol mathematics education physics engineering ohms electrical resistance angular frequency dynamical systems astronomy constellations philosophy math development text science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"></path></svg><span>Omega</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Option.html" title="Option keyboard key mac alt button development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h6l6 18h6"></path><path d="M14 3h7"></path></svg><span>Option</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Orbit.html" title="Orbit planet space physics satellites moons science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.341 6.484A10 10 0 0 1 10.266 21.85"></path><path d="M3.659 17.516A10 10 0 0 1 13.74 2.152"></path><circle cx="12" cy="12" r="3"></circle><circle cx="19" cy="5" r="2"></circle><circle cx="5" cy="19" r="2"></circle></svg><span>Orbit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Origami.html" title="Origami paper bird animals design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025"></path><path d="m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009"></path><path d="m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027"></path></svg><span>Origami</span></a>
</div>
<h3>P</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Package2.html" title="Package2 box container storage sealed packed unopened undelivered archive zip files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v6"></path><path d="M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z"></path><path d="M3.054 9.013h17.893"></path></svg><span>Package2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PackageCheck.html" title="PackageCheck confirm verified done todo tick complete task delivered development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22V12"></path><path d="m16 17 2 2 4-4"></path><path d="M21 11.127V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.32-.753"></path><path d="M3.29 7 12 12l8.71-5"></path><path d="m7.5 4.27 8.997 5.148"></path></svg><span>PackageCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PackageMinus.html" title="PackageMinus delete remove development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22V12"></path><path d="M16 17h6"></path><path d="M21 13V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.675-.955"></path><path d="M3.29 7 12 12l8.71-5"></path><path d="m7.5 4.27 8.997 5.148"></path></svg><span>PackageMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PackageOpen.html" title="PackageOpen box container storage unpack unarchive unzip opened delivered files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-9"></path><path d="M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"></path><path d="M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"></path><path d="M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z"></path></svg><span>PackageOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PackagePlus.html" title="PackagePlus new add create development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22V12"></path><path d="M16 17h6"></path><path d="M19 14v6"></path><path d="M21 10.535V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l1.675-.955"></path><path d="M3.29 7 12 12l8.71-5"></path><path d="m7.5 4.27 8.997 5.148"></path></svg><span>PackagePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PackageSearch.html" title="PackageSearch find product process lens files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22V12"></path><path d="M20.27 18.27 22 20"></path><path d="M21 10.498V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l.98-.559"></path><path d="M3.29 7 12 12l8.71-5"></path><path d="m7.5 4.27 8.997 5.148"></path><circle cx="18.5" cy="16.5" r="2.5"></circle></svg><span>PackageSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PackageX.html" title="PackageX delete remove development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22V12"></path><path d="m16.5 14.5 5 5"></path><path d="m16.5 19.5 5-5"></path><path d="M21 10.5V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.729l7 4a2 2 0 0 0 2 .001l.13-.074"></path><path d="M3.29 7 12 12l8.71-5"></path><path d="m7.5 4.27 8.997 5.148"></path></svg><span>PackageX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Package.html" title="Package box container storage sealed delivery undelivered unopened packed archive zip module files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z"></path><path d="M12 22V12"></path><polyline points="3.29 7 12 12 20.71 7"></polyline><path d="m7.5 4.27 9 5.15"></path></svg><span>Package</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PaintBucket.html" title="PaintBucket fill paint bucket color colour design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 7 6 2"></path><path d="M18.992 12H2.041"></path><path d="M21.145 18.38A3.34 3.34 0 0 1 20 16.5a3.3 3.3 0 0 1-1.145 1.88c-.575.46-.855 1.02-.855 1.595A2 2 0 0 0 20 22a2 2 0 0 0 2-2.025c0-.58-.285-1.13-.855-1.595"></path><path d="m8.5 4.5 2.148-2.148a1.205 1.205 0 0 1 1.704 0l7.296 7.296a1.205 1.205 0 0 1 0 1.704l-7.592 7.592a3.615 3.615 0 0 1-5.112 0l-3.888-3.888a3.615 3.615 0 0 1 0-5.112L5.67 7.33"></path></svg><span>PaintBucket</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PaintRoller.html" title="PaintRoller brush color colour decoration diy text design home tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="16" x="2" y="2"></rect><path d="M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"></path><rect height="6" rx="1" width="4" x="8" y="16"></rect></svg><span>PaintRoller</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PaintbrushVertical.html" title="PaintbrushVertical brush paintbrush design color colour decoration diy text design photography home tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v2"></path><path d="M14 2v4"></path><path d="M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z"></path><path d="M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"></path></svg><span>PaintbrushVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Paintbrush.html" title="Paintbrush brush paintbrush design color colour decoration diy text design photography home tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.622 17.897-10.68-2.913"></path><path d="M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z"></path><path d="M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"></path></svg><span>Paintbrush</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Palette.html" title="Palette colors colours theme scheme paint watercolor watercolour artist text design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z"></path><circle cx="13.5" cy="6.5" fill="currentColor" r=".5"></circle><circle cx="17.5" cy="10.5" fill="currentColor" r=".5"></circle><circle cx="6.5" cy="12.5" fill="currentColor" r=".5"></circle><circle cx="8.5" cy="7.5" fill="currentColor" r=".5"></circle></svg><span>Palette</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Panda.html" title="Panda animal wildlife bear zoo bamboo animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.25 17.25h1.5L12 18z"></path><path d="m15 12 2 2"></path><path d="M18 6.5a.5.5 0 0 0-.5-.5"></path><path d="M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"></path><path d="M6 6.5a.495.495 0 0 1 .5-.5"></path><path d="m9 12-2 2"></path></svg><span>Panda</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelBottomClose.html" title="PanelBottomClose drawer dock hide chevron down layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 15h18"></path><path d="m15 8-3 3-3-3"></path></svg><span>PanelBottomClose</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelBottomDashed.html" title="PanelBottomDashed drawer dock show reveal padding margin guide layout bleed layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M14 15h1"></path><path d="M19 15h2"></path><path d="M3 15h2"></path><path d="M9 15h1"></path></svg><span>PanelBottomDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelBottomOpen.html" title="PanelBottomOpen drawer dock show reveal chevron up layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 15h18"></path><path d="m9 10 3-3 3 3"></path></svg><span>PanelBottomOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelBottom.html" title="PanelBottom drawer dock layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 15h18"></path></svg><span>PanelBottom</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelLeftClose.html" title="PanelLeftClose primary drawer hide chevron &lt; layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 3v18"></path><path d="m16 15-3-3 3-3"></path></svg><span>PanelLeftClose</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelLeftDashed.html" title="PanelLeftDashed sidebar primary drawer show reveal padding margin guide layout bleed layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 14v1"></path><path d="M9 19v2"></path><path d="M9 3v2"></path><path d="M9 9v1"></path></svg><span>PanelLeftDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelLeftOpen.html" title="PanelLeftOpen primary drawer show reveal chevron right &gt; layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 3v18"></path><path d="m14 9 3 3-3 3"></path></svg><span>PanelLeftOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelLeftRightDashed.html" title="PanelLeftRightDashed sidebar primary drawer show reveal padding margin guide layout vertical bleed layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 10V9"></path><path d="M15 15v-1"></path><path d="M15 21v-2"></path><path d="M15 5V3"></path><path d="M9 10V9"></path><path d="M9 15v-1"></path><path d="M9 21v-2"></path><path d="M9 5V3"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>PanelLeftRightDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelLeft.html" title="PanelLeft primary drawer layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 3v18"></path></svg><span>PanelLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelRightClose.html" title="PanelRightClose sidebar secondary drawer hide chevron &gt; layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M15 3v18"></path><path d="m8 9 3 3-3 3"></path></svg><span>PanelRightClose</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelRightDashed.html" title="PanelRightDashed sidebar secondary drawer show reveal padding margin guide layout bleed layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M15 14v1"></path><path d="M15 19v2"></path><path d="M15 3v2"></path><path d="M15 9v1"></path></svg><span>PanelRightDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelRightOpen.html" title="PanelRightOpen sidebar secondary drawer show reveal chevron left &lt; layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M15 3v18"></path><path d="m10 15-3-3 3-3"></path></svg><span>PanelRightOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelRight.html" title="PanelRight sidebar secondary drawer layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M15 3v18"></path></svg><span>PanelRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelTopBottomDashed.html" title="PanelTopBottomDashed sidebar primary drawer show reveal padding margin guide layout horizontal bleed layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 15h1"></path><path d="M14 9h1"></path><path d="M19 15h2"></path><path d="M19 9h2"></path><path d="M3 15h2"></path><path d="M3 9h2"></path><path d="M9 15h1"></path><path d="M9 9h1"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>PanelTopBottomDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelTopClose.html" title="PanelTopClose menu bar drawer hide chevron up layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9h18"></path><path d="m9 16 3-3 3 3"></path></svg><span>PanelTopClose</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelTopDashed.html" title="PanelTopDashed menu bar drawer show reveal padding margin guide layout bleed layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M14 9h1"></path><path d="M19 9h2"></path><path d="M3 9h2"></path><path d="M9 9h1"></path></svg><span>PanelTopDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelTopOpen.html" title="PanelTopOpen menu bar drawer show reveal chevron down layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9h18"></path><path d="m15 14-3 3-3-3"></path></svg><span>PanelTopOpen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelTop.html" title="PanelTop drawer browser webpage layout design development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9h18"></path></svg><span>PanelTop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelsLeftBottom.html" title="PanelsLeftBottom drawers sidebar primary layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 3v18"></path><path d="M9 15h12"></path></svg><span>PanelsLeftBottom</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelsRightBottom.html" title="PanelsRightBottom drawers sidebar secondary layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 15h12"></path><path d="M15 3v18"></path></svg><span>PanelsRightBottom</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PanelsTopLeft.html" title="PanelsTopLeft menu bar sidebar primary drawers window webpage projects overview layout design development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9h18"></path><path d="M9 21V9"></path></svg><span>PanelsTopLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Paperclip.html" title="Paperclip attachment file text design files mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"></path></svg><span>Paperclip</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Parentheses.html" title="Parentheses code token parenthesis parens brackets parameters arguments args input call math formula function ( ) development files math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 21s-4-3-4-9 4-9 4-9"></path><path d="M16 3s4 3 4 9-4 9-4 9"></path></svg><span>Parentheses</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ParkingMeter.html" title="ParkingMeter driving car park pay sidewalk pavement transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 15h2"></path><path d="M12 12v3"></path><path d="M12 19v3"></path><path d="M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z"></path><path d="M9 9a3 3 0 1 1 6 0"></path></svg><span>ParkingMeter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PartyPopper.html" title="PartyPopper emoji congratulations celebration party tada 🎉 🎊 excitement exciting excites confetti emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5.8 11.3 2 22l10.7-3.79"></path><path d="M4 3h.01"></path><path d="M22 8h.01"></path><path d="M15 2h.01"></path><path d="M22 20h.01"></path><path d="m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"></path><path d="m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17"></path><path d="m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7"></path><path d="M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"></path></svg><span>PartyPopper</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pause.html" title="Pause music stop multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="1" width="5" x="14" y="3"></rect><rect height="18" rx="1" width="5" x="5" y="3"></rect></svg><span>Pause</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PawPrint.html" title="PawPrint pets vets veterinarian domesticated cat dog bear animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="4" r="2"></circle><circle cx="18" cy="8" r="2"></circle><circle cx="20" cy="16" r="2"></circle><path d="M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z"></path></svg><span>PawPrint</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PcCase.html" title="PcCase computer chassis devices gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" width="14" x="5" y="2"></rect><path d="M15 14h.01"></path><path d="M9 6h6"></path><path d="M9 10h6"></path></svg><span>PcCase</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PenLine.html" title="PenLine pencil change create draw writer writing biro ink marker felt tip stationery artist text design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 21h8"></path><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"></path></svg><span>PenLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PenOff.html" title="PenOff disabled inactive non-editable locked read-only unmodifiable frozen restricted pencil change create draw writer writing biro ink marker felt tip stationery artist text design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"></path><path d="m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"></path><path d="m2 2 20 20"></path></svg><span>PenOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PenTool.html" title="PenTool vector drawing path text design cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg><span>PenTool</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pen.html" title="Pen pencil change create draw writer writing biro ink marker felt tip stationery artist text design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"></path></svg><span>Pen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PencilLine.html" title="PencilLine pencil change create draw sketch draft writer writing biro ink marker felt tip stationery artist text design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 21h8"></path><path d="m15 5 4 4"></path><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"></path></svg><span>PencilLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PencilOff.html" title="PencilOff disabled inactive non-editable locked read-only unmodifiable frozen restricted rubber edit create draw sketch draft writer writing stationery artist design cursors tools text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"></path><path d="m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"></path><path d="m15 5 4 4"></path><path d="m2 2 20 20"></path></svg><span>PencilOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PencilRuler.html" title="PencilRuler edit create draw sketch draft writer writing stationery artist measurements centimeters cm millimeters mm metre foot feet inches units size length width height dimensions depth breadth extent tools design layout text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13"></path><path d="m8 6 2-2"></path><path d="m18 16 2-2"></path><path d="m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17"></path><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"></path><path d="m15 5 4 4"></path></svg><span>PencilRuler</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pencil.html" title="Pencil rubber edit create draw sketch draft writer writing stationery artist design cursors tools text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"></path><path d="m15 5 4 4"></path></svg><span>Pencil</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pentagon.html" title="Pentagon shape shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z"></path></svg><span>Pentagon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Percent.html" title="Percent percentage modulo modulus remainder % sale discount offer marketing math development finance shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="19" x2="5" y1="5" y2="19"></line><circle cx="6.5" cy="6.5" r="2.5"></circle><circle cx="17.5" cy="17.5" r="2.5"></circle></svg><span>Percent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PersonStanding.html" title="PersonStanding people human accessibility stick figure accessibility people"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="5" r="1"></circle><path d="m9 20 3-6 3 6"></path><path d="m6 8 6 2 6-2"></path><path d="M12 10v4"></path></svg><span>PersonStanding</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhilippinePeso.html" title="PhilippinePeso currency peso money php finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 11H4"></path><path d="M20 7H4"></path><path d="M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7"></path></svg><span>PhilippinePeso</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhoneCall.html" title="PhoneCall ring connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2a9 9 0 0 1 9 9"></path><path d="M13 6a5 5 0 0 1 5 5"></path><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"></path></svg><span>PhoneCall</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhoneForwarded.html" title="PhoneForwarded call arrows connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 6h8"></path><path d="m18 2 4 4-4 4"></path><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"></path></svg><span>PhoneForwarded</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhoneIncoming.html" title="PhoneIncoming call arrows connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 2v6h6"></path><path d="m22 2-6 6"></path><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"></path></svg><span>PhoneIncoming</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhoneMissed.html" title="PhoneMissed call connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 2 6 6"></path><path d="m22 2-6 6"></path><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"></path></svg><span>PhoneMissed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhoneOff.html" title="PhoneOff call mute connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272"></path><path d="M22 2 2 22"></path><path d="M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473"></path></svg><span>PhoneOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PhoneOutgoing.html" title="PhoneOutgoing call arrows connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 8 6-6"></path><path d="M22 8V2h-6"></path><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"></path></svg><span>PhoneOutgoing</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Phone.html" title="Phone call text connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"></path></svg><span>Phone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pi.html" title="Pi constant code coding programming symbol trigonometry geometry formula development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="9" x2="9" y1="4" y2="20"></line><path d="M4 7c0-1.7 1.3-3 3-3h13"></path><path d="M18 20c-1.7 0-3-1.3-3-3V4"></path></svg><span>Pi</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Piano.html" title="Piano music audio sound noise notes chord keys octave acoustic instrument play pianist performance concert multimedia devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8"></path><path d="M2 14h20"></path><path d="M6 14v4"></path><path d="M10 14v4"></path><path d="M14 14v4"></path><path d="M18 14v4"></path></svg><span>Piano</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pickaxe.html" title="Pickaxe mining mine land worker extraction labor construction progress advancement crafting building creation tools gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999"></path><path d="M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024"></path><path d="M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069"></path><path d="M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z"></path></svg><span>Pickaxe</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PictureInPicture2.html" title="PictureInPicture2 display play video pop out always on top window inset multitask multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4"></path><rect height="7" rx="2" width="10" x="12" y="13"></rect></svg><span>PictureInPicture2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PictureInPicture.html" title="PictureInPicture display play video pop out always on top window inset multitask multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 10h6V4"></path><path d="m2 4 6 6"></path><path d="M21 10V7a2 2 0 0 0-2-2h-7"></path><path d="M3 14v2a2 2 0 0 0 2 2h3"></path><rect height="7" rx="1" width="10" x="12" y="14"></rect></svg><span>PictureInPicture</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PiggyBank.html" title="PiggyBank money savings finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z"></path><path d="M16 10h.01"></path><path d="M2 8v1a2 2 0 0 0 2 2h1"></path></svg><span>PiggyBank</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PilcrowLeft.html" title="PilcrowLeft direction paragraph mark paraph blind typography type text prose symbol text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 3v11"></path><path d="M14 9h-3a3 3 0 0 1 0-6h9"></path><path d="M18 3v11"></path><path d="M22 18H2l4-4"></path><path d="m6 22-4-4"></path></svg><span>PilcrowLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PilcrowRight.html" title="PilcrowRight direction paragraph mark paraph blind typography type text prose symbol text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 3v11"></path><path d="M10 9H7a1 1 0 0 1 0-6h8"></path><path d="M14 3v11"></path><path d="m18 14 4 4H2"></path><path d="m22 18-4 4"></path></svg><span>PilcrowRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pilcrow.html" title="Pilcrow paragraph mark paraph blind typography type text prose symbol text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 4v16"></path><path d="M17 4v16"></path><path d="M19 4H9.5a4.5 4.5 0 0 0 0 9H13"></path></svg><span>Pilcrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PillBottle.html" title="PillBottle medicine medication prescription drug supplement vitamin capsule jar container healthcare pharmaceutical tablet medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4"></path><path d="M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7"></path><rect height="5" rx="1" width="16" x="4" y="2"></rect></svg><span>PillBottle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pill.html" title="Pill medicine medication drug prescription tablet pharmacy medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z"></path><path d="m8.5 8.5 7 7"></path></svg><span>Pill</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PinOff.html" title="PinOff unpin map unlock unfix unsave remove navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v5"></path><path d="M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89"></path><path d="m2 2 20 20"></path><path d="M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11"></path></svg><span>PinOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pin.html" title="Pin save map lock fix navigation account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v5"></path><path d="M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z"></path></svg><span>Pin</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pipette.html" title="Pipette eye dropper color picker lab chemistry text design science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12"></path><path d="m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z"></path><path d="m2 22 .414-.414"></path></svg><span>Pipette</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pizza.html" title="Pizza pie quiche food food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 14-1 1"></path><path d="m13.75 18.25-1.25 1.42"></path><path d="M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12"></path><path d="M18.8 9.3a1 1 0 0 0 2.1 7.7"></path><path d="M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z"></path></svg><span>Pizza</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PlaneLanding.html" title="PlaneLanding arrival plane trip airplane landing transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 22h20"></path><path d="M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z"></path></svg><span>PlaneLanding</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PlaneTakeoff.html" title="PlaneTakeoff departure plane trip airplane takeoff transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 22h20"></path><path d="M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z"></path></svg><span>PlaneTakeoff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Plane.html" title="Plane plane trip airplane transportation travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"></path></svg><span>Plane</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Play.html" title="Play music audio video start run arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"></path></svg><span>Play</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Plug2.html" title="Plug2 electricity energy socket outlet devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 2v6"></path><path d="M15 2v6"></path><path d="M12 17v5"></path><path d="M5 8h14"></path><path d="M6 11V8h12v3a6 6 0 1 1-12 0Z"></path></svg><span>Plug2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PlugZap.html" title="PlugZap electricity energy electronics charge charging battery connect devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"></path><path d="m2 22 3-3"></path><path d="M7.5 13.5 10 11"></path><path d="M10.5 16.5 13 14"></path><path d="m18 3-4 4h6l-4 4"></path></svg><span>PlugZap</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Plug.html" title="Plug electricity energy electronics socket outlet power voltage current charger devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-5"></path><path d="M15 8V2"></path><path d="M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z"></path><path d="M9 8V2"></path></svg><span>Plug</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Plus.html" title="Plus add new increase increment positive calculate toolbar crosshair aim target scope sight reticule maximum upgrade extra + math tools development text cursors gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"></path><path d="M12 5v14"></path></svg><span>Plus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PocketKnife.html" title="PocketKnife swiss army knife penknife multi-tool multitask blade cutter gadget corkscrew tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2"></path><path d="M18 6h.01"></path><path d="M6 18h.01"></path><path d="M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z"></path><path d="M18 11.66V22a4 4 0 0 0 4-4V6"></path></svg><span>PocketKnife</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Podcast.html" title="Podcast audio music mic talk voice subscribe subscription stream multimedia social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z" fill="currentColor"></path><path d="M16.85 18.58a9 9 0 1 0-9.7 0"></path><path d="M8 14a5 5 0 1 1 8 0"></path><circle cx="12" cy="11" fill="currentColor" r="1"></circle></svg><span>Podcast</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PointerOff.html" title="PointerOff mouse cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 4.5V4a2 2 0 0 0-2.41-1.957"></path><path d="M13.9 8.4a2 2 0 0 0-1.26-1.295"></path><path d="M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"></path><path d="m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"></path><path d="M6 6v8"></path><path d="m2 2 20 20"></path></svg><span>PointerOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pointer.html" title="Pointer mouse cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 14a8 8 0 0 1-8 8"></path><path d="M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2"></path><path d="M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1"></path><path d="M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10"></path><path d="M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"></path></svg><span>Pointer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Popcorn.html" title="Popcorn cinema movies films salted sweet sugar candy snack food-beverage multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4"></path><path d="M10 22 9 8"></path><path d="m14 22 1-14"></path><path d="M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z"></path></svg><span>Popcorn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Popsicle.html" title="Popsicle ice lolly ice cream sweet food food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z"></path><path d="m22 22-5.5-5.5"></path></svg><span>Popsicle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PoundSterling.html" title="PoundSterling currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 7c0-5.333-8-5.333-8 0"></path><path d="M10 7v14"></path><path d="M6 21h12"></path><path d="M6 13h10"></path></svg><span>PoundSterling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PowerOff.html" title="PowerOff on off device switch connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.36 6.64A9 9 0 0 1 20.77 15"></path><path d="M6.16 6.16a9 9 0 1 0 12.68 12.68"></path><path d="M12 2v4"></path><path d="m2 2 20 20"></path></svg><span>PowerOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Power.html" title="Power on off device switch toggle binary boolean reboot restart button keyboard troubleshoot connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v10"></path><path d="M18.4 6.6a9 9 0 1 1-12.77.04"></path></svg><span>Power</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Presentation.html" title="Presentation screen whiteboard marker pens markers blackboard chalk easel school learning lesson office meeting project planning multimedia photography devices communication design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 3h20"></path><path d="M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"></path><path d="m7 21 5-5 5 5"></path></svg><span>Presentation</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PrinterCheck.html" title="PrinterCheck fax office device success printed devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5"></path><path d="m16 19 2 2 4-4"></path><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2"></path><path d="M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"></path></svg><span>PrinterCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.PrinterX.html" title="PrinterX fax office device cross cancel remove error devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.531 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h6.377"></path><path d="m16.5 16.5 5 5"></path><path d="m16.5 21.5 5-5"></path><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.5"></path><path d="M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"></path></svg><span>PrinterX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Printer.html" title="Printer fax office device devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><path d="M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"></path><rect height="8" rx="1" width="12" x="6" y="14"></rect></svg><span>Printer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Projector.html" title="Projector cinema film movie home video presentation slideshow office meeting project planning multimedia photography devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 7 3 5"></path><path d="M9 6V3"></path><path d="m13 7 2-2"></path><circle cx="9" cy="13" r="3"></circle><path d="M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17"></path><path d="M16 16h2"></path></svg><span>Projector</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Proportions.html" title="Proportions screens sizes rotate rotation adjust aspect ratio 16:9 widescreen 4:3 resolution responsive mobile desktop dimensions monitor orientation portrait landscape layout design photography devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M12 9v11"></path><path d="M2 9h13a2 2 0 0 1 2 2v9"></path></svg><span>Proportions</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Puzzle.html" title="Puzzle component module part piece development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z"></path></svg><span>Puzzle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Pyramid.html" title="Pyramid prism triangle triangular hierarchy structure geometry ancient egyptian landmark tourism shapes math travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z"></path><path d="M12 2v20"></path></svg><span>Pyramid</span></a>
</div>
<h3>Q</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.QrCode.html" title="QrCode barcode scan link url information digital development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="5" rx="1" width="5" x="3" y="3"></rect><rect height="5" rx="1" width="5" x="16" y="3"></rect><rect height="5" rx="1" width="5" x="3" y="16"></rect><path d="M21 16h-3a2 2 0 0 0-2 2v3"></path><path d="M21 21v.01"></path><path d="M12 7v3a2 2 0 0 1-2 2H7"></path><path d="M3 12h.01"></path><path d="M12 3h.01"></path><path d="M12 16v.01"></path><path d="M16 12h1"></path><path d="M21 12v.01"></path><path d="M12 21v-1"></path></svg><span>QrCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Quote.html" title="Quote quotation text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"></path><path d="M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"></path></svg><span>Quote</span></a>
</div>
<h3>R</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Rabbit.html" title="Rabbit animal rodent pet pest bunny hare fast speed hop animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 16a3 3 0 0 1 2.24 5"></path><path d="M18 12h.01"></path><path d="M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3"></path><path d="M20 8.54V4a2 2 0 1 0-4 0v3"></path><path d="M7.612 12.524a3 3 0 1 0-1.6 4.3"></path></svg><span>Rabbit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Radar.html" title="Radar scan sonar detect find locate navigation security communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.07 4.93A10 10 0 0 0 6.99 3.34"></path><path d="M4 6h.01"></path><path d="M2.29 9.62A10 10 0 1 0 21.31 8.35"></path><path d="M16.24 7.76A6 6 0 1 0 8.23 16.67"></path><path d="M12 18h.01"></path><path d="M17.99 11.66A6 6 0 0 1 15.77 16.67"></path><circle cx="12" cy="12" r="2"></circle><path d="m13.41 10.59 5.66-5.66"></path></svg><span>Radar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Radiation.html" title="Radiation radioactive nuclear fallout waste atomic physics particle element molecule science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12h.01"></path><path d="M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z"></path><path d="M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z"></path><path d="M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z"></path></svg><span>Radiation</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Radical.html" title="Radical calculate formula math operator root square symbol development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21"></path></svg><span>Radical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RadioOff.html" title="RadioOff signal broadcast connectivity live frequency devices multimedia social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.414 13.414a2 2 0 1 1-2.828-2.828"></path><path d="M16.247 7.761a6 6 0 0 1 1.744 4.572"></path><path d="M19.075 4.933a10 10 0 0 1 2.234 10.72"></path><path d="m2 2 20 20"></path><path d="M4.925 19.067a10 10 0 0 1 0-14.134"></path><path d="M7.753 16.239a6 6 0 0 1 0-8.478"></path></svg><span>RadioOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RadioReceiver.html" title="RadioReceiver device music connect devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 16v2"></path><path d="M19 16v2"></path><rect height="8" rx="2" width="20" x="2" y="8"></rect><path d="M18 12h.01"></path></svg><span>RadioReceiver</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RadioTower.html" title="RadioTower signal broadcast connectivity live frequency devices multimedia social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4.9 16.1C1 12.2 1 5.8 4.9 1.9"></path><path d="M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"></path><circle cx="12" cy="9" r="2"></circle><path d="M16.2 4.8c2 2 2.26 5.11.8 7.47"></path><path d="M19.1 1.9a9.96 9.96 0 0 1 0 14.1"></path><path d="M9.5 18h5"></path><path d="m8 22 4-11 4 11"></path></svg><span>RadioTower</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Radio.html" title="Radio signal broadcast connectivity live frequency devices multimedia social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.247 7.761a6 6 0 0 1 0 8.478"></path><path d="M19.075 4.933a10 10 0 0 1 0 14.134"></path><path d="M4.925 19.067a10 10 0 0 1 0-14.134"></path><path d="M7.753 16.239a6 6 0 0 1 0-8.478"></path><circle cx="12" cy="12" r="2"></circle></svg><span>Radio</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Radius.html" title="Radius shape circle geometry trigonometry radii calculate measure size shapes math design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.34 17.52a10 10 0 1 0-2.82 2.82"></path><circle cx="19" cy="19" r="2"></circle><path d="m13.41 13.41 4.18 4.18"></path><circle cx="12" cy="12" r="2"></circle></svg><span>Radius</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rainbow.html" title="Rainbow colors colours spectrum light prism arc clear sunshine weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17a10 10 0 0 0-20 0"></path><path d="M6 17a6 6 0 0 1 12 0"></path><path d="M10 17a2 2 0 0 1 4 0"></path></svg><span>Rainbow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rat.html" title="Rat mouse mice gerbil rodent pet pest plague disease animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 22H4a2 2 0 0 1 0-4h12"></path><path d="M13.236 18a3 3 0 0 0-2.2-5"></path><path d="M16 9h.01"></path><path d="M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3"></path><path d="M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18"></path></svg><span>Rat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ratio.html" title="Ratio screens sizes rotate rotation adjust aspect ratio proportions 16:9 widescreen 4:3 resolution responsive mobile desktop dimensions monitor orientation portrait landscape layout design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" width="12" x="6" y="2"></rect><rect height="12" rx="2" width="20" x="2" y="6"></rect></svg><span>Ratio</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptCent.html" title="ReceiptCent bill voucher slip check counterfoil currency cents dollar usd $ ¢ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v10"></path><path d="M14.828 14.829a4 4 0 0 1-5.656 0 4 4 0 0 1 0-5.657 4 4 0 0 1 5.656 0"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path></svg><span>ReceiptCent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptEuro.html" title="ReceiptEuro bill voucher slip check counterfoil currency € finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.828 14.829a4 4 0 0 1-5.656 0 4 4 0 0 1 0-5.657 4 4 0 0 1 5.656 0"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path><path d="M8 12h5"></path></svg><span>ReceiptEuro</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptIndianRupee.html" title="ReceiptIndianRupee bill voucher slip check counterfoil currency inr ₹ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path><path d="M8 11h8"></path><path d="M8 7h8"></path><path d="M9 7a4 4 0 0 1 0 8H8l3 2"></path></svg><span>ReceiptIndianRupee</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptJapaneseYen.html" title="ReceiptJapaneseYen bill voucher slip check counterfoil currency jpy ¥ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 10 3-3"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path><path d="M9 11h6"></path><path d="M9 15h6"></path><path d="m9 7 3 3v7"></path></svg><span>ReceiptJapaneseYen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptPoundSterling.html" title="ReceiptPoundSterling bill voucher slip check counterfoil british currency gbp £ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 17V9.5a1 1 0 0 1 5 0"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path><path d="M8 13h5"></path><path d="M8 17h7"></path></svg><span>ReceiptPoundSterling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptRussianRuble.html" title="ReceiptRussianRuble bill voucher slip check counterfoil currency rub ₽ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path><path d="M8 11h5a2 2 0 0 0 0-4h-3v10"></path><path d="M8 15h5"></path></svg><span>ReceiptRussianRuble</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptSwissFranc.html" title="ReceiptSwissFranc bill voucher slip check counterfoil currency chf ₣ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 11h4"></path><path d="M10 17V7h5"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path><path d="M8 15h5"></path></svg><span>ReceiptSwissFranc</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptText.html" title="ReceiptText bill voucher slip check counterfoil details small print terms conditions contract finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 16H8"></path><path d="M14 8H8"></path><path d="M16 12H8"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path></svg><span>ReceiptText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReceiptTurkishLira.html" title="ReceiptTurkishLira bill voucher slip check counterfoil currency try ₺ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 7v10a5 5 0 0 0 5-5"></path><path d="m14 8-6 3"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path></svg><span>ReceiptTurkishLira</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Receipt.html" title="Receipt bill voucher slip check counterfoil currency dollar usd $ finance travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17V7"></path><path d="M16 8h-6a2 2 0 0 0 0 4h4a2 2 0 0 1 0 4H8"></path><path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"></path></svg><span>Receipt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RectangleCircle.html" title="RectangleCircle compose keyboard key button development text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"></path><circle cx="14" cy="12" r="8"></circle></svg><span>RectangleCircle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RectangleEllipsis.html" title="RectangleEllipsis login password authenticate 2fa field fill ellipsis et cetera etc loader loading progress pending throbber menu options operator code spread rest more further extra overflow dots … ... text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="2" width="20" x="2" y="6"></rect><path d="M12 12h.01"></path><path d="M17 12h.01"></path><path d="M7 12h.01"></path></svg><span>RectangleEllipsis</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RectangleGoggles.html" title="RectangleGoggles vr virtual augmented reality headset goggles devices gaming multimedia connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"></path></svg><span>RectangleGoggles</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RectangleHorizontal.html" title="RectangleHorizontal rectangle aspect ratio 16:9 horizontal shape shapes design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="2" width="20" x="2" y="6"></rect></svg><span>RectangleHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RectangleVertical.html" title="RectangleVertical rectangle aspect ratio 9:16 vertical shape shapes design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" width="12" x="6" y="2"></rect></svg><span>RectangleVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Recycle.html" title="Recycle sustainability salvage arrows sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"></path><path d="M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"></path><path d="m14 16-3 3 3 3"></path><path d="M8.293 13.596 7.196 9.5 3.1 10.598"></path><path d="m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"></path><path d="m13.378 9.633 4.096 1.098 1.097-4.096"></path></svg><span>Recycle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Redo2.html" title="Redo2 undo rerun history text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 14 5-5-5-5"></path><path d="M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13"></path></svg><span>Redo2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RedoDot.html" title="RedoDot redo history step over forward text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="17" r="1"></circle><path d="M21 7v6h-6"></path><path d="M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"></path></svg><span>RedoDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Redo.html" title="Redo undo rerun history text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 7v6h-6"></path><path d="M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"></path></svg><span>Redo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RefreshCcwDot.html" title="RefreshCcwDot arrows rotate reload synchronise synchronize circular cycle issue code coding version control arrows development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"></path><path d="M3 3v5h5"></path><path d="M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"></path><path d="M16 16h5v5"></path><circle cx="12" cy="12" r="1"></circle></svg><span>RefreshCcwDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RefreshCcw.html" title="RefreshCcw arrows rotate reload rerun synchronise synchronize circular cycle arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"></path><path d="M3 3v5h5"></path><path d="M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"></path><path d="M16 16h5v5"></path></svg><span>RefreshCcw</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RefreshCwOff.html" title="RefreshCwOff rotate reload rerun synchronise synchronize arrows circular cycle cancel no stop error disconnect ignore arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"></path><path d="M8 16H3v5"></path><path d="M3 12C3 9.51 4 7.26 5.64 5.64"></path><path d="m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"></path><path d="M21 12c0 1-.16 1.97-.47 2.87"></path><path d="M21 3v5h-5"></path><path d="M22 22 2 2"></path></svg><span>RefreshCwOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RefreshCw.html" title="RefreshCw rotate reload rerun synchronise synchronize arrows circular cycle arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"></path><path d="M21 3v5h-5"></path><path d="M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"></path><path d="M8 16H3v5"></path></svg><span>RefreshCw</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Refrigerator.html" title="Refrigerator frigerator fridge freezer cooler icebox chiller cold storage food-beverage home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"></path><path d="M5 10h14"></path><path d="M15 7v6"></path></svg><span>Refrigerator</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Regex.html" title="Regex search text code text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 3v10"></path><path d="m12.67 5.5 8.66 5"></path><path d="m12.67 10.5 8.66-5"></path><path d="M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"></path></svg><span>Regex</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RemoveFormatting.html" title="RemoveFormatting text font typography format x remove delete times clear text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 7V4h16v3"></path><path d="M5 20h6"></path><path d="M13 4 8 20"></path><path d="m15 15 5 5"></path><path d="m20 15-5 5"></path></svg><span>RemoveFormatting</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Repeat1.html" title="Repeat1 replay multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 2 4 4-4 4"></path><path d="M3 11v-1a4 4 0 0 1 4-4h14"></path><path d="m7 22-4-4 4-4"></path><path d="M21 13v1a4 4 0 0 1-4 4H3"></path><path d="M11 10h1v4"></path></svg><span>Repeat1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Repeat2.html" title="Repeat2 arrows retweet repost share repeat loop arrows social multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 9 3-3 3 3"></path><path d="M13 18H7a2 2 0 0 1-2-2V6"></path><path d="m22 15-3 3-3-3"></path><path d="M11 6h6a2 2 0 0 1 2 2v10"></path></svg><span>Repeat2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RepeatOff.html" title="RepeatOff loop arrows recurring again arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.656 6H21l-4-4"></path><path d="M17.898 17.898A4 4 0 0 1 17 18H3l4-4"></path><path d="m2 2 20 20"></path><path d="M21 13v1a4 4 0 0 1-.171 1.159"></path><path d="m21 6-4 4"></path><path d="M3 11v-1a4 4 0 0 1 3.102-3.898"></path><path d="m7 22-4-4"></path></svg><span>RepeatOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Repeat.html" title="Repeat loop arrows arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 2 4 4-4 4"></path><path d="M3 11v-1a4 4 0 0 1 4-4h14"></path><path d="m7 22-4-4 4-4"></path><path d="M21 13v1a4 4 0 0 1-4 4H3"></path></svg><span>Repeat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReplaceAll.html" title="ReplaceAll search substitute swap change text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"></path><path d="M14 4a1 1 0 0 1 1-1"></path><path d="M15 10a1 1 0 0 1-1-1"></path><path d="M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"></path><path d="M21 4a1 1 0 0 0-1-1"></path><path d="M21 9a1 1 0 0 1-1 1"></path><path d="m3 7 3 3 3-3"></path><path d="M6 10V5a2 2 0 0 1 2-2h2"></path><rect height="7" rx="1" width="7" x="3" y="14"></rect></svg><span>ReplaceAll</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Replace.html" title="Replace search substitute swap change text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 4a1 1 0 0 1 1-1"></path><path d="M15 10a1 1 0 0 1-1-1"></path><path d="M21 4a1 1 0 0 0-1-1"></path><path d="M21 9a1 1 0 0 1-1 1"></path><path d="m3 7 3 3 3-3"></path><path d="M6 10V5a2 2 0 0 1 2-2h2"></path><rect height="7" rx="1" width="7" x="3" y="14"></rect></svg><span>Replace</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ReplyAll.html" title="ReplyAll email mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 17-5-5 5-5"></path><path d="M22 18v-2a4 4 0 0 0-4-4H7"></path><path d="m7 17-5-5 5-5"></path></svg><span>ReplyAll</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Reply.html" title="Reply email mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 18v-2a4 4 0 0 0-4-4H4"></path><path d="m9 17-5-5 5-5"></path></svg><span>Reply</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rewind.html" title="Rewind music arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z"></path><path d="M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z"></path></svg><span>Rewind</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ribbon.html" title="Ribbon awareness strip band tape strap cordon social medical emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22"></path><path d="m12 18 2.57-3.5"></path><path d="M6.243 9.016a7 7 0 0 1 11.507-.009"></path><path d="M9.35 14.53 12 11.22"></path><path d="M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z"></path></svg><span>Ribbon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Road.html" title="Road road street highway route path transport traffic drive map transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v4"></path><path d="M12 5V3"></path><path d="M12 9v3"></path><path d="M2.077 18.449A2 2 0 0 0 4 21h16a2 2 0 0 0 1.924-2.55l-4-14A2 2 0 0 0 16 3H8a2 2 0 0 0-1.924 1.45z"></path></svg><span>Road</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rocket.html" title="Rocket release boost launch space version gaming development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"></path><path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09"></path><path d="M9 12a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z"></path><path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 .05 5 .05"></path></svg><span>Rocket</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RockingChair.html" title="RockingChair chair furniture seat comfort relax home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 13 3.708 7.416"></path><path d="M3 19a15 15 0 0 0 18 0"></path><path d="m3 2 3.21 9.633A2 2 0 0 0 8.109 13H18"></path><path d="m9 13-3.708 7.416"></path></svg><span>RockingChair</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RollerCoaster.html" title="RollerCoaster attraction entertainment amusement park theme park funfair navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 19V5"></path><path d="M10 19V6.8"></path><path d="M14 19v-7.8"></path><path d="M18 5v4"></path><path d="M18 19v-6"></path><path d="M22 19V9"></path><path d="M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65"></path></svg><span>RollerCoaster</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rose.html" title="Rose roses thorns petals plant stem leaves spring bloom blossom gardening botanical flora florist bouquet bunch gift date romance romantic valentines day special occasion nature seasons sustainability home social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 10h-1a4 4 0 1 1 4-4v.534"></path><path d="M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"></path><path d="M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"></path><path d="M9.77 12C4 15 2 22 2 22"></path><circle cx="17" cy="8" r="2"></circle></svg><span>Rose</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rotate3d.html" title="Rotate3d gizmo transform orientation orbit axis design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.194 13.707 3.814 1.86-1.86 3.814"></path><path d="M16.47214 7.52786 A 5 10 0 1 0 13 21.79796"></path><path d="M21.79796 11 A 10 5 0 1 0 19 15.57071"></path></svg><span>Rotate3d</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RotateCcwKey.html" title="RotateCcwKey password key refresh change security account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v6"></path><path d="M12 9h2"></path><path d="M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8"></path><path d="M3 3v5h5"></path><circle cx="12" cy="15" r="2"></circle></svg><span>RotateCcwKey</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RotateCcwSquare.html" title="RotateCcwSquare left counter-clockwise rotate image 90 45 degrees ° layout design photography tools arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 9V7a2 2 0 0 0-2-2h-6"></path><path d="m15 2-3 3 3 3"></path><path d="M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"></path></svg><span>RotateCcwSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RotateCcw.html" title="RotateCcw arrow left counter-clockwise restart reload rerun refresh backup undo replay redo retry rewind reverse arrows design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"></path><path d="M3 3v5h5"></path></svg><span>RotateCcw</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RotateCwSquare.html" title="RotateCwSquare right clockwise rotate image 90 45 degrees ° layout design photography tools arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5H6a2 2 0 0 0-2 2v3"></path><path d="m9 8 3-3-3-3"></path><path d="M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"></path></svg><span>RotateCwSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RotateCw.html" title="RotateCw arrow right clockwise refresh reload rerun redo arrows design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"></path><path d="M21 3v5h-5"></path></svg><span>RotateCw</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RouteOff.html" title="RouteOff path journey planner points stops stations reset clear cancelled closed blocked navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="19" r="3"></circle><path d="M9 19h8.5c.4 0 .9-.1 1.3-.2"></path><path d="M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"></path><path d="m2 2 20 20"></path><path d="M21 15.3a3.5 3.5 0 0 0-3.3-3.3"></path><path d="M15 5h-4.3"></path><circle cx="18" cy="5" r="3"></circle></svg><span>RouteOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Route.html" title="Route path journey planner points stops stations navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="19" r="3"></circle><path d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"></path><circle cx="18" cy="5" r="3"></circle></svg><span>Route</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Router.html" title="Router computer server cloud development devices connectivity home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="2" width="20" x="2" y="14"></rect><path d="M6.01 18H6"></path><path d="M10.01 18H10"></path><path d="M15 10v4"></path><path d="M17.84 7.17a4 4 0 0 0-5.66 0"></path><path d="M20.66 4.34a8 8 0 0 0-11.31 0"></path></svg><span>Router</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rows2.html" title="Rows2 lines list queue preview panel paragraphs parallel series split vertical horizontal half center middle even drawer layout design text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 12h18"></path></svg><span>Rows2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rows3.html" title="Rows3 lines list queue preview paragraphs parallel series split vertical horizontal half center middle even drawers layout design text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M21 9H3"></path><path d="M21 15H3"></path></svg><span>Rows3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rows4.html" title="Rows4 lines list queue preview paragraphs parallel series split vertical horizontal half center middle even drawers grill layout design text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M21 7.5H3"></path><path d="M21 12H3"></path><path d="M21 16.5H3"></path></svg><span>Rows4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Rss.html" title="Rss feed subscribe news updates notifications content blog articles broadcast syndication reader channels posts publishing digest alert following inbox newsletter weblog podcast development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg><span>Rss</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RulerDimensionLine.html" title="RulerDimensionLine measurements centimeters cm millimeters mm metre foot feet inches units size length width height dimensions depth breadth extent stationery tools design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 15v-3"></path><path d="M14 15v-3"></path><path d="M18 15v-3"></path><path d="M2 8V4"></path><path d="M22 6H2"></path><path d="M22 8V4"></path><path d="M6 15v-3"></path><rect height="8" rx="2" width="20" x="2" y="12"></rect></svg><span>RulerDimensionLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ruler.html" title="Ruler measurements centimeters cm millimeters mm metre foot feet inches units size length width height dimensions depth breadth extent stationery tools design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z"></path><path d="m14.5 12.5 2-2"></path><path d="m11.5 9.5 2-2"></path><path d="m8.5 6.5 2-2"></path><path d="m17.5 15.5 2-2"></path></svg><span>Ruler</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.RussianRuble.html" title="RussianRuble currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 11h8a4 4 0 0 0 0-8H9v18"></path><path d="M6 15h8"></path></svg><span>RussianRuble</span></a>
</div>
<h3>S</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Sailboat.html" title="Sailboat ship boat harbor harbour dock transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v15"></path><path d="M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z"></path><path d="M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z"></path></svg><span>Sailboat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Salad.html" title="Salad food vegetarian dish restaurant course meal side vegetables health food-beverage emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 21h10"></path><path d="M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"></path><path d="M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1"></path><path d="m13 12 4-4"></path><path d="M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2"></path></svg><span>Salad</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sandwich.html" title="Sandwich food snack dish restaurant lunch meal food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777"></path><path d="M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25"></path><path d="M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9"></path><path d="m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"></path><rect height="4" rx="1" width="20" x="2" y="11"></rect></svg><span>Sandwich</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SatelliteDish.html" title="SatelliteDish antenna receiver dish aerial saucer connectivity devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10a7.31 7.31 0 0 0 10 10Z"></path><path d="m9 15 3-3"></path><path d="M17 13a6 6 0 0 0-6-6"></path><path d="M21 13A10 10 0 0 0 11 3"></path></svg><span>SatelliteDish</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Satellite.html" title="Satellite space station orbit transmitter connectivity science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5"></path><path d="M16.5 7.5 19 5"></path><path d="m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5"></path><path d="M9 21a6 6 0 0 0-6-6"></path><path d="M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z"></path></svg><span>Satellite</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SaudiRiyal.html" title="SaudiRiyal currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m20 19.5-5.5 1.2"></path><path d="M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2"></path><path d="m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2"></path><path d="M20 10 4 13.5"></path></svg><span>SaudiRiyal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SaveAll.html" title="SaveAll floppy disks copy text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v3a1 1 0 0 0 1 1h5"></path><path d="M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6"></path><path d="M18 22H4a2 2 0 0 1-2-2V6"></path><path d="M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z"></path></svg><span>SaveAll</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SaveOff.html" title="SaveOff floppy disk unsalvageable text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 13H8a1 1 0 0 0-1 1v7"></path><path d="M14 8h1"></path><path d="M17 21v-4"></path><path d="m2 2 20 20"></path><path d="M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"></path><path d="M29.5 11.5s5 5 4 5"></path><path d="M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"></path></svg><span>SaveOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Save.html" title="Save floppy disk text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"></path><path d="M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"></path><path d="M7 3v4a1 1 0 0 0 1 1h7"></path></svg><span>Save</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scale3d.html" title="Scale3d gizmo transform size axis design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 7v11a1 1 0 0 0 1 1h11"></path><path d="M5.293 18.707 11 13"></path><circle cx="19" cy="19" r="2"></circle><circle cx="5" cy="5" r="2"></circle></svg><span>Scale3d</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scale.html" title="Scale balance legal license right rule law justice weight measure compare judge fair ethics decision navigation science finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v18"></path><path d="m19 8 3 8a5 5 0 0 1-6 0zV7"></path><path d="M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1"></path><path d="m5 8 3 8a5 5 0 0 1-6 0zV7"></path><path d="M7 21h10"></path></svg><span>Scale</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scaling.html" title="Scaling scale resize design design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path><path d="M14 15H9v-5"></path><path d="M16 3h5v5"></path><path d="M21 3 9 15"></path></svg><span>Scaling</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanBarcode.html" title="ScanBarcode checkout till cart transaction purchase buy product packaging retail consumer shopping devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><path d="M8 7v10"></path><path d="M12 7v10"></path><path d="M17 7v10"></path></svg><span>ScanBarcode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanEye.html" title="ScanEye preview zoom expand fullscreen gallery image camera watch surveillance retina focus lens biometric identification authentication access login photography multimedia accessibility security devices account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><circle cx="12" cy="12" r="1"></circle><path d="M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"></path></svg><span>ScanEye</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanFace.html" title="ScanFace face biometric identification authentication 2fa access login dashed account security devices social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><path d="M9 9h.01"></path><path d="M15 9h.01"></path></svg><span>ScanFace</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanHeart.html" title="ScanHeart health heart rate pulse monitoring healthiness screening dashed medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><path d="M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z"></path></svg><span>ScanHeart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanLine.html" title="ScanLine checkout till cart transaction purchase buy product packaging retail consumer qr-code dashed devices shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><path d="M7 12h10"></path></svg><span>ScanLine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanQrCode.html" title="ScanQrCode barcode scan qrcode url information digital scanner account shopping devices security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 12v4a1 1 0 0 1-1 1h-4"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M17 8V7"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M7 17h.01"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><rect height="5" rx="1" width="5" x="7" y="7"></rect></svg><span>ScanQrCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanSearch.html" title="ScanSearch preview zoom expand fullscreen gallery image focus lens photography multimedia accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><circle cx="12" cy="12" r="3"></circle><path d="m16 16-1.9-1.9"></path></svg><span>ScanSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScanText.html" title="ScanText recognition read translate copy lines text devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path><path d="M7 8h8"></path><path d="M7 12h10"></path><path d="M7 16h6"></path></svg><span>ScanText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scan.html" title="Scan qr-code barcode checkout augmented reality ar target surveillance camera lens focus frame select box boundary bounds area square dashed devices shopping security social gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path></svg><span>Scan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.School.html" title="School building education childhood university learning campus scholar student lecture degree course academia study knowledge classroom research diploma graduation professor tutorial homework assignment exam buildings navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 21v-3a2 2 0 0 0-4 0v3"></path><path d="M18 4.933V21"></path><path d="m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6"></path><path d="m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11"></path><path d="M6 4.933V21"></path><circle cx="12" cy="9" r="2"></circle></svg><span>School</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScissorsLineDashed.html" title="ScissorsLineDashed cut here along snip chop stationery crafts instructions diagram design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5.42 9.42 8 12"></path><circle cx="4" cy="8" r="2"></circle><path d="m14 6-8.58 8.58"></path><circle cx="4" cy="16" r="2"></circle><path d="M10.8 14.8 14 18"></path><path d="M16 12h-2"></path><path d="M22 12h-2"></path></svg><span>ScissorsLineDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scissors.html" title="Scissors cut snip chop stationery crafts text design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="6" r="3"></circle><path d="M8.12 8.12 12 12"></path><path d="M20 4 8.12 15.88"></path><circle cx="6" cy="18" r="3"></circle><path d="M14.8 14.8 20 20"></path></svg><span>Scissors</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scooter.html" title="Scooter vehicle drive trip journey transport electric ride urban commute speed transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 4h-3.5l2 11.05"></path><path d="M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009"></path><circle cx="19.5" cy="17.5" r="2.5"></circle><circle cx="4.5" cy="17.5" r="2.5"></circle></svg><span>Scooter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScreenShareOff.html" title="ScreenShareOff desktop disconnect monitor connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"></path><path d="M8 21h8"></path><path d="M12 17v4"></path><path d="m22 3-5 5"></path><path d="m17 3 5 5"></path></svg><span>ScreenShareOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScreenShare.html" title="ScreenShare host desktop monitor connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"></path><path d="M8 21h8"></path><path d="M12 17v4"></path><path d="m17 8 5-5"></path><path d="M17 3h5v5"></path></svg><span>ScreenShare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ScrollText.html" title="ScrollText paper log scripture document notes parchment list long script story code coding gaming development text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 12h-5"></path><path d="M15 8h-5"></path><path d="M19 17V5a2 2 0 0 0-2-2H4"></path><path d="M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"></path></svg><span>ScrollText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Scroll.html" title="Scroll paper log scripture document notes parchment list long script story code coding gaming development text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 17V5a2 2 0 0 0-2-2H4"></path><path d="M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"></path></svg><span>Scroll</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SearchAlert.html" title="SearchAlert find scan magnifier magnifying glass stop warning alert error anomaly lens text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><path d="m21 21-4.3-4.3"></path><path d="M11 7v4"></path><path d="M11 15h.01"></path></svg><span>SearchAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SearchCheck.html" title="SearchCheck find scan magnifier magnifying glass found correct complete tick lens text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m8 11 2 2 4-4"></path><circle cx="11" cy="11" r="8"></circle><path d="m21 21-4.3-4.3"></path></svg><span>SearchCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SearchCode.html" title="SearchCode find scan magnifier magnifying glass grep chevrons &lt;&gt; lens text social development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m13 13.5 2-2.5-2-2.5"></path><path d="m21 21-4.3-4.3"></path><path d="M9 8.5 7 11l2 2.5"></path><circle cx="11" cy="11" r="8"></circle></svg><span>SearchCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SearchSlash.html" title="SearchSlash find scan magnifier magnifying glass stop clear cancel abort / lens text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m13.5 8.5-5 5"></path><circle cx="11" cy="11" r="8"></circle><path d="m21 21-4.3-4.3"></path></svg><span>SearchSlash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SearchX.html" title="SearchX find scan magnifier magnifying glass stop clear cancel abort lens text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m13.5 8.5-5 5"></path><path d="m8.5 8.5 5 5"></path><circle cx="11" cy="11" r="8"></circle><path d="m21 21-4.3-4.3"></path></svg><span>SearchX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Search.html" title="Search find scan magnifier magnifying glass lens text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 21-4.34-4.34"></path><circle cx="11" cy="11" r="8"></circle></svg><span>Search</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Section.html" title="Section mark typography punctuation legal type text prose symbol text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0"></path><path d="M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0"></path></svg><span>Section</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SendHorizontal.html" title="SendHorizontal email message mail paper airplane paper aeroplane submit mail communication connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"></path><path d="M6 12h16"></path></svg><span>SendHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SendToBack.html" title="SendToBack bring send move under back backwards overlap layer order design layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="2" width="8" x="14" y="14"></rect><rect height="8" rx="2" width="8" x="2" y="2"></rect><path d="M7 14v1a2 2 0 0 0 2 2h1"></path><path d="M14 7h1a2 2 0 0 1 2 2v1"></path></svg><span>SendToBack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Send.html" title="Send email message mail paper airplane paper aeroplane submit mail communication connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z"></path><path d="m21.854 2.147-10.94 10.939"></path></svg><span>Send</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SeparatorHorizontal.html" title="SeparatorHorizontal move split text arrows layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 16-4 4-4-4"></path><path d="M3 12h18"></path><path d="m8 8 4-4 4 4"></path></svg><span>SeparatorHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SeparatorVertical.html" title="SeparatorVertical move split text arrows layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v18"></path><path d="m16 16 4-4-4-4"></path><path d="m8 8-4 4 4 4"></path></svg><span>SeparatorVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ServerCog.html" title="ServerCog cloud storage computing cog gear development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.852 14.772-.383.923"></path><path d="M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923"></path><path d="m13.148 9.228.383-.923"></path><path d="m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544"></path><path d="m14.772 10.852.923-.383"></path><path d="m14.772 13.148.923.383"></path><path d="M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5"></path><path d="M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5"></path><path d="M6 18h.01"></path><path d="M6 6h.01"></path><path d="m9.228 10.852-.923-.383"></path><path d="m9.228 13.148-.923.383"></path></svg><span>ServerCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ServerCrash.html" title="ServerCrash cloud storage problem error development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"></path><path d="M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"></path><path d="M6 6h.01"></path><path d="M6 18h.01"></path><path d="m13 6-4 6h6l-4 6"></path></svg><span>ServerCrash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ServerOff.html" title="ServerOff cloud storage development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"></path><path d="M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"></path><path d="M22 17v-1a2 2 0 0 0-2-2h-1"></path><path d="M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"></path><path d="M6 18h.01"></path><path d="m2 2 20 20"></path></svg><span>ServerOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Server.html" title="Server cloud storage development devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="2" ry="2" width="20" x="2" y="2"></rect><rect height="8" rx="2" ry="2" width="20" x="2" y="14"></rect><line x1="6" x2="6.01" y1="6" y2="6"></line><line x1="6" x2="6.01" y1="18" y2="18"></line></svg><span>Server</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Settings2.html" title="Settings2 cog edit gear preferences slider account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 17H5"></path><path d="M19 7h-9"></path><circle cx="17" cy="17" r="3"></circle><circle cx="7" cy="7" r="3"></circle></svg><span>Settings2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Settings.html" title="Settings cog edit gear preferences account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"></path><circle cx="12" cy="12" r="3"></circle></svg><span>Settings</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shapes.html" title="Shapes triangle equilateral square circle classification different collection toy blocks learning shapes gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"></path><rect height="7" rx="1" width="7" x="3" y="14"></rect><circle cx="17.5" cy="17.5" r="3.5"></circle></svg><span>Shapes</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Share2.html" title="Share2 network connections account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" x2="15.42" y1="13.51" y2="17.49"></line><line x1="15.41" x2="8.59" y1="6.51" y2="10.49"></line></svg><span>Share2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Share.html" title="Share network connections account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v13"></path><path d="m16 6-4-4-4 4"></path><path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path></svg><span>Share</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sheet.html" title="Sheet spreadsheets table excel text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><line x1="3" x2="21" y1="9" y2="9"></line><line x1="3" x2="21" y1="15" y2="15"></line><line x1="9" x2="9" y1="9" y2="21"></line><line x1="15" x2="15" y1="9" y2="21"></line></svg><span>Sheet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shell.html" title="Shell beach sand holiday sealife fossil ammonite biology ocean terminal command line session bash zsh roll wrap chewing gum bubble gum sweet sugar hosepipe carpet string spiral spinner hypnotise hypnosis animals development nature science travel food-beverage home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44"></path></svg><span>Shell</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShelvingUnit.html" title="ShelvingUnit ledge rack storage inventory furniture sill shelves shelf organize display store arrange unit cabinet fixture retail warehouse home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 12V9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path><path d="M16 20v-3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"></path><path d="M20 22V2"></path><path d="M4 12h16"></path><path d="M4 20h16"></path><path d="M4 2v20"></path><path d="M4 4h16"></path></svg><span>ShelvingUnit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldAlert.html" title="ShieldAlert unshielded cybersecurity insecure unsecured safety unsafe protection unprotected guardian unguarded unarmored unarmoured defenseless defenceless undefended defender blocked stopped intercepted interception saved thwarted threat prevention unprevented antivirus vigilance vigilant detection detected scanned found exploit vulnerability vulnerable weakness infection infected comprimised data leak audited admin verification unverified uncertified warning emergency attention urgent alarm crest bravery strength tough attacked damaged injured hit expired disabled inactive error exclamation mark ! account security development notifications gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M12 8v4"></path><path d="M12 16h.01"></path></svg><span>ShieldAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldBan.html" title="ShieldBan unshielded cybersecurity insecure unsecured safety unsafe protection unprotected guardian unguarded unarmored unarmoured defenseless defenceless undefended defender blocked stopped intercepted interception saved thwarted threat prevention unprevented antivirus vigilance vigilant detection detected scanned found exploit vulnerability vulnerable weakness infection infected comprimised data leak audited admin verification unverified uncertified cancel error crest bravery attacked damaged injured hit expired eliminated disabled inactive / account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="m4.243 5.21 14.39 12.472"></path></svg><span>ShieldBan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldCheck.html" title="ShieldCheck cybersecurity secured safety protection protected guardian guarded armored armoured defense defence defended blocked threat prevention prevented antivirus vigilance vigilant active activated enabled detection scanned found strength strong tough invincible invincibility invulnerable undamaged audited admin verification verified certification certified tested passed qualified cleared cleaned disinfected uninfected task completed todo done ticked checked crest bravery account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="m9 12 2 2 4-4"></path></svg><span>ShieldCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldCogCorner.html" title="ShieldCogCorner cybersecurity secure safety protection guardian armored armoured defense defence defender block threat prevention antivirus vigilance vigilant detection scan find strength strong tough invincible invincibility invulnerable undamaged audit admin verification crest shieldcog bravery knight foot soldier infantry trooper pawn battle war military army cadet scout account security development gaming shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 22c-3.806-1.45-7-3.966-7-9V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v4"></path><path d="M14.923 16.547 14 16.164"></path><path d="m14.923 18.843-.923.383"></path><path d="M16.547 14.923 16.164 14"></path><path d="m16.547 20.467-.383.924"></path><path d="m18.843 14.923.383-.923"></path><path d="m19.225 21.391-.382-.924"></path><path d="m20.467 16.547.923-.383"></path><path d="m20.467 18.843.923.383"></path><circle cx="17.695" cy="17.695" r="3"></circle></svg><span>ShieldCogCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldCog.html" title="ShieldCog cybersecurity secure safety protection guardian armored armoured defense defence defender block threat prevention antivirus vigilance vigilant detection scan find strength strong tough invincible invincibility invulnerable undamaged audit admin verification crest bravery knight foot soldier infantry trooper pawn battle war military army cadet scout account security development gaming shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.929 14.467-.383.924"></path><path d="M10.929 8.923 10.546 8"></path><path d="M13.225 8.923 13.608 8"></path><path d="m13.607 15.391-.382-.924"></path><path d="m14.849 10.547.923-.383"></path><path d="m14.849 12.843.923.383"></path><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="m9.305 10.547-.923-.383"></path><path d="m9.305 12.843-.923.383"></path><circle cx="12.077" cy="11.695" r="3"></circle></svg><span>ShieldCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldEllipsis.html" title="ShieldEllipsis cybersecurity securing protecting guarding armoring armouring defending blocking preventing antivirus detecting scanning finding auditing admin verifying crest upgrading loader loading throbber progress dots more etc ... … account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M8 12h.01"></path><path d="M12 12h.01"></path><path d="M16 12h.01"></path></svg><span>ShieldEllipsis</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldHalf.html" title="ShieldHalf cybersecurity secure safety protection guardian armored armoured defense defence defender block threat prevention antivirus vigilance vigilant detection scan strength strong tough invincible invincibility invulnerable undamaged audit admin verification crest logo sigil flag team faction fraternity university college academy school education uniform bravery knight foot soldier infantry trooper pawn battle war military ranking army cadet scout account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M12 22V2"></path></svg><span>ShieldHalf</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldMinus.html" title="ShieldMinus unshield cybersecurity unsecure unguard unblock antivirus clean clear disinfect patch fix stop cancel remove relax admin crest bravery weakened damaged hit unarm disable deactivate decommission downgraded minimum - account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M9 12h6"></path></svg><span>ShieldMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldOff.html" title="ShieldOff unshielded cybersecurity insecure unsecured safety unsafe protection unprotected guardian unguarded unarmored unarmoured defenseless defenceless undefended defender interception threat prevention unprevented antivirus detection undetected exploit vulnerability vulnerable weakness infected infection comprimised data leak unaudited admin verification unverified inactive cancelled error crest bravery damaged injured hit expired eliminated account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 2 20 20"></path><path d="M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"></path><path d="M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"></path></svg><span>ShieldOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldPlus.html" title="ShieldPlus cybersecurity secure safety protection guardian armored armoured defense defence defender block threat prevention antivirus vigilance vigilant detection scan strength strong tough invincible invincibility invulnerable undamaged extra added professional enterprise full maximum upgraded ultra activate enable audit admin verification crest medic + account security development gaming medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M9 12h6"></path><path d="M12 9v6"></path></svg><span>ShieldPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldQuestionMark.html" title="ShieldQuestionMark unshielded cybersecurity insecure unsecured safety unsafe protection unprotected guardian unguarded unarmored unarmoured defenseless defenceless undefended defender threat prevention unprevented antivirus vigilance vigilant detection undetected scan find exploit vulnerability vulnerable weakness infection comprimised data leak audit admin verification unverified uncertified uncertain unknown inactive crest question mark ? account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"></path><path d="M12 17h.01"></path></svg><span>ShieldQuestionMark</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldUser.html" title="ShieldUser shield user admin protection protected safety guard account security development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="M6.376 18.91a6 6 0 0 1 11.249.003"></path><circle cx="12" cy="11" r="4"></circle></svg><span>ShieldUser</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShieldX.html" title="ShieldX unshielded cybersecurity insecure unsecured safety unsafe protection unprotected guardian unguarded unarmored unarmoured defenseless defenceless undefended defender blocked stopped intercepted interception saved thwarted threat prevention prevented antivirus vigilance vigilant detection detected scanned found exploit vulnerability vulnerable weakness infection infected comprimised data leak audited admin verification unverified inactive cancel error wrong false crest bravery attacked damaged injured hit dead deceased expired eliminated exterminated account security development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path><path d="m14.5 9.5-5 5"></path><path d="m9.5 9.5 5 5"></path></svg><span>ShieldX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shield.html" title="Shield cybersecurity secure safety protection guardian armored armoured defense defence defender block threat prevention antivirus vigilance vigilant detection scan find strength strong tough invincible invincibility invulnerable undamaged audit admin verification crest bravery knight foot soldier infantry trooper pawn battle war military army cadet scout account security development gaming shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path></svg><span>Shield</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShipWheel.html" title="ShipWheel steering rudder boat knots nautical mile maritime sailing yacht cruise ocean liner tanker vessel navy trip transportation navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="8"></circle><path d="M12 2v7.5"></path><path d="m19 5-5.23 5.23"></path><path d="M22 12h-7.5"></path><path d="m19 19-5.23-5.23"></path><path d="M12 14.5V22"></path><path d="M10.23 13.77 5 19"></path><path d="M9.5 12H2"></path><path d="M10.23 10.23 5 5"></path><circle cx="12" cy="12" r="2.5"></circle></svg><span>ShipWheel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ship.html" title="Ship boat knots nautical mile maritime sailing yacht cruise ocean liner tanker vessel navy trip releases transportation navigation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10.189V14"></path><path d="M12 2v3"></path><path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"></path><path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"></path><path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"></path></svg><span>Ship</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shirt.html" title="Shirt t-shirt shopping store clothing clothes shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"></path></svg><span>Shirt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShoppingBag.html" title="ShoppingBag ecommerce cart purchase store shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 10a4 4 0 0 1-8 0"></path><path d="M3.103 6.034h17.794"></path><path d="M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"></path></svg><span>ShoppingBag</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShoppingBasket.html" title="ShoppingBasket cart e-commerce store purchase products items ingredients shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 11-1 9"></path><path d="m19 11-4-7"></path><path d="M2 11h20"></path><path d="m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4"></path><path d="M4.5 15.5h15"></path><path d="m5 11 4-7"></path><path d="m9 11 1 9"></path></svg><span>ShoppingBasket</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShoppingCart.html" title="ShoppingCart trolley cart basket e-commerce store purchase products items ingredients shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="8" cy="21" r="1"></circle><circle cx="19" cy="21" r="1"></circle><path d="M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"></path></svg><span>ShoppingCart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shovel.html" title="Shovel dig spade treasure nature tools gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z"></path><path d="M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z"></path><path d="m9 15 7.879-7.878"></path></svg><span>Shovel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ShowerHead.html" title="ShowerHead shower bath bathroom amenities services home travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m4 4 2.5 2.5"></path><path d="M13.5 6.5a4.95 4.95 0 0 0-7 7"></path><path d="M15 5 5 15"></path><path d="M14 17v.01"></path><path d="M10 16v.01"></path><path d="M13 13v.01"></path><path d="M16 10v.01"></path><path d="M11 20v.01"></path><path d="M17 14v.01"></path><path d="M20 11v.01"></path></svg><span>ShowerHead</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shredder.html" title="Shredder file paper tear cut delete destroy remove erase document destruction secure security confidential data trash dispose disposal information waste permanent mail files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10 22v-5"></path><path d="M14 19v-2"></path><path d="M18 20v-3"></path><path d="M2 13h20"></path><path d="M6 20v-3"></path></svg><span>Shredder</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shrimp.html" title="Shrimp seafood shellfish crustacean prawn scallop whelk arthropod littleneck quahog cherrystone animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 12h.01"></path><path d="M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1"></path><path d="M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8"></path><path d="M14 8a8.5 8.5 0 0 1 0 8"></path><path d="M16 16c2 0 4.5-4 4-6"></path></svg><span>Shrimp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shrink.html" title="Shrink scale fullscreen layout arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 15 6 6m-6-6v4.8m0-4.8h4.8"></path><path d="M9 19.8V15m0 0H4.2M9 15l-6 6"></path><path d="M15 4.2V9m0 0h4.8M15 9l6-6"></path><path d="M9 4.2V9m0 0H4.2M9 9 3 3"></path></svg><span>Shrink</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shrub.html" title="Shrub forest undergrowth park nature nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5"></path><path d="M14.5 14.5 12 17"></path><path d="M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z"></path></svg><span>Shrub</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Shuffle.html" title="Shuffle music random reorder multimedia arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 14 4 4-4 4"></path><path d="m18 2 4 4-4 4"></path><path d="M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"></path><path d="M2 6h1.972a4 4 0 0 1 3.6 2.2"></path><path d="M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"></path></svg><span>Shuffle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sigma.html" title="Sigma sum calculate formula math enumeration enumerate text math science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2"></path></svg><span>Sigma</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SignalHigh.html" title="SignalHigh connection wireless gsm phone 2g 3g 4g 5g connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20h.01"></path><path d="M7 20v-4"></path><path d="M12 20v-8"></path><path d="M17 20V8"></path></svg><span>SignalHigh</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SignalLow.html" title="SignalLow connection wireless gsm phone 2g 3g 4g 5g connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20h.01"></path><path d="M7 20v-4"></path></svg><span>SignalLow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SignalMedium.html" title="SignalMedium connection wireless gsm phone 2g 3g 4g 5g connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20h.01"></path><path d="M7 20v-4"></path><path d="M12 20v-8"></path></svg><span>SignalMedium</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SignalZero.html" title="SignalZero connection wireless gsm phone 2g 3g 4g 5g lost connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20h.01"></path></svg><span>SignalZero</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Signal.html" title="Signal connection wireless gsm phone 2g 3g 4g 5g connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 20h.01"></path><path d="M7 20v-4"></path><path d="M12 20v-8"></path><path d="M17 20V8"></path><path d="M22 4v16"></path></svg><span>Signal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Signature.html" title="Signature text format input contract autograph handwriting sign cursive ink scribble authorize personal agreement legal document identity authentic approval verification unique text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284"></path><path d="M3 21h18"></path></svg><span>Signature</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SignpostBig.html" title="SignpostBig bidirectional left right east west arrows navigation development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 9H4L2 7l2-2h6"></path><path d="M14 5h6l2 2-2 2h-6"></path><path d="M10 22V4a2 2 0 1 1 4 0v18"></path><path d="M8 22h8"></path></svg><span>SignpostBig</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Signpost.html" title="Signpost navigation direction arrow wayfinding guide location pointer route indicator marker bidirectional left right east west arrows navigation development gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v8"></path><path d="M12 3v3"></path><path d="M2.354 10.354a1.207 1.207 0 0 1 0-1.708l2.06-2.06A2 2 0 0 1 5.828 6h12.344a2 2 0 0 1 1.414.586l2.06 2.06a1.207 1.207 0 0 1 0 1.708l-2.06 2.06a2 2 0 0 1-1.414.586H5.828a2 2 0 0 1-1.414-.586z"></path></svg><span>Signpost</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Siren.html" title="Siren police ambulance emergency security alert alarm light medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 18v-6a5 5 0 1 1 10 0v6"></path><path d="M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z"></path><path d="M21 12h1"></path><path d="M18.5 4.5 18 5"></path><path d="M2 12h1"></path><path d="M12 2v1"></path><path d="m4.929 4.929.707.707"></path><path d="M12 12v6"></path></svg><span>Siren</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SkipBack.html" title="SkipBack arrow previous music multimedia arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"></path><path d="M3 20V4"></path></svg><span>SkipBack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SkipForward.html" title="SkipForward arrow skip next music multimedia arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 4v16"></path><path d="M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"></path></svg><span>SkipForward</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Skull.html" title="Skull death danger bone gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12.5 17-.5-1-.5 1h1z"></path><path d="M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z"></path><circle cx="15" cy="12" r="1"></circle><circle cx="9" cy="12" r="1"></circle></svg><span>Skull</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Slash.html" title="Slash divide division or / development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 2 2 22"></path></svg><span>Slash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Slice.html" title="Slice cutter scalpel knife design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14"></path></svg><span>Slice</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SlidersHorizontal.html" title="SlidersHorizontal settings filters controls account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 5H3"></path><path d="M12 19H3"></path><path d="M14 3v4"></path><path d="M16 17v4"></path><path d="M21 12h-9"></path><path d="M21 19h-5"></path><path d="M21 5h-7"></path><path d="M8 10v4"></path><path d="M8 12H3"></path></svg><span>SlidersHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SlidersVertical.html" title="SlidersVertical settings controls account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 8h4"></path><path d="M12 21v-9"></path><path d="M12 8V3"></path><path d="M17 16h4"></path><path d="M19 12V3"></path><path d="M19 21v-5"></path><path d="M3 14h4"></path><path d="M5 10V3"></path><path d="M5 21v-7"></path></svg><span>SlidersVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SmartphoneCharging.html" title="SmartphoneCharging phone cellphone device power screen connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" ry="2" width="14" x="5" y="2"></rect><path d="M12.667 8 10 12h4l-2.667 4"></path></svg><span>SmartphoneCharging</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SmartphoneNfc.html" title="SmartphoneNfc contactless payment near-field communication screen communication finance devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="1" width="7" x="2" y="6"></rect><path d="M13 8.32a7.43 7.43 0 0 1 0 7.36"></path><path d="M16.46 6.21a11.76 11.76 0 0 1 0 11.58"></path><path d="M19.91 4.1a15.91 15.91 0 0 1 .01 15.8"></path></svg><span>SmartphoneNfc</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Smartphone.html" title="Smartphone phone cellphone device screen connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" ry="2" width="14" x="5" y="2"></rect><path d="M12 18h.01"></path></svg><span>Smartphone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SmilePlus.html" title="SmilePlus emoji face happy good emotion react reaction add emoji social notifications communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11v1a10 10 0 1 1-9-10"></path><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><line x1="9" x2="9.01" y1="9" y2="9"></line><line x1="15" x2="15.01" y1="9" y2="9"></line><path d="M16 5h6"></path><path d="M19 2v6"></path></svg><span>SmilePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Smile.html" title="Smile emoji face happy good emotion emoji account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><line x1="9" x2="9.01" y1="9" y2="9"></line><line x1="15" x2="15.01" y1="9" y2="9"></line></svg><span>Smile</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Snail.html" title="Snail animal insect slow speed delicacy spiral animals food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0"></path><circle cx="10" cy="13" r="8"></circle><path d="M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6"></path><path d="M18 3 19.1 5.2"></path><path d="M22 3 20.9 5.2"></path></svg><span>Snail</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Snowflake.html" title="Snowflake cold weather freeze snow winter weather seasons"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 20-1.25-2.5L6 18"></path><path d="M10 4 8.75 6.5 6 6"></path><path d="m14 20 1.25-2.5L18 18"></path><path d="m14 4 1.25 2.5L18 6"></path><path d="m17 21-3-6h-4"></path><path d="m17 3-3 6 1.5 3"></path><path d="M2 12h6.5L10 9"></path><path d="m20 10-1.5 2 1.5 2"></path><path d="M22 12h-6.5L14 15"></path><path d="m4 10 1.5 2L4 14"></path><path d="m7 21 3-6-1.5-3"></path><path d="m7 3 3 6h4"></path></svg><span>Snowflake</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SoapDispenserDroplet.html" title="SoapDispenserDroplet wash bath water liquid fluid wet moisture damp bead globule home travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 2v4"></path><path d="M14 2H7a2 2 0 0 0-2 2"></path><path d="M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"></path><path d="M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg><span>SoapDispenserDroplet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sofa.html" title="Sofa armchair furniture leisure lounge loveseat couch home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"></path><path d="M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"></path><path d="M4 18v2"></path><path d="M20 18v2"></path><path d="M12 4v9"></path></svg><span>Sofa</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SolarPanel.html" title="SolarPanel solar panel solar panel sun energy electricity light home science sustainability weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 2h2"></path><path d="m14.28 14-4.56 8"></path><path d="m21 22-1.558-4H4.558"></path><path d="M3 10v2"></path><path d="M6.245 15.04A2 2 0 0 1 8 14h12a1 1 0 0 1 .864 1.505l-3.11 5.457A2 2 0 0 1 16 22H4a1 1 0 0 1-.863-1.506z"></path><path d="M7 2a4 4 0 0 1-4 4"></path><path d="m8.66 7.66 1.41 1.41"></path></svg><span>SolarPanel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Soup.html" title="Soup food dish restaurant course meal bowl starter food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"></path><path d="M7 21h10"></path><path d="M19.5 12 22 6"></path><path d="M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62"></path><path d="M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62"></path><path d="M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62"></path></svg><span>Soup</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Space.html" title="Space text selection letters characters font typography text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"></path></svg><span>Space</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Spade.html" title="Spade shape suit playing cards shapes gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18v4"></path><path d="M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5"></path></svg><span>Spade</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sparkle.html" title="Sparkle star effect filter night magic shiny glitter twinkle celebration shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"></path></svg><span>Sparkle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sparkles.html" title="Sparkles stars effect filter night magic cursors multimedia gaming weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"></path><path d="M20 2v4"></path><path d="M22 4h-4"></path><circle cx="4" cy="20" r="2"></circle></svg><span>Sparkles</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Speaker.html" title="Speaker sound audio music tweeter subwoofer bass production producer dj multimedia devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" width="16" x="4" y="2"></rect><path d="M12 6h.01"></path><circle cx="12" cy="14" r="4"></circle><path d="M12 14h.01"></path></svg><span>Speaker</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Speech.html" title="Speech disability disabled dda human accessibility people sound accessibility communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20"></path><path d="M19.8 17.8a7.5 7.5 0 0 0 .003-10.603"></path><path d="M17 15a3.5 3.5 0 0 0-.025-4.975"></path></svg><span>Speech</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SpellCheck2.html" title="SpellCheck2 spelling error mistake oversight typo correction code linter a text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 16 6-12 6 12"></path><path d="M8 12h8"></path><path d="M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1"></path></svg><span>SpellCheck2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SpellCheck.html" title="SpellCheck spelling error mistake oversight typo correction code linter a text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 16 6-12 6 12"></path><path d="M8 12h8"></path><path d="m16 20 2 2 4-4"></path></svg><span>SpellCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SplinePointer.html" title="SplinePointer path tool curve node click pointer target vector arrows cursors design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"></path><path d="M5 17A12 12 0 0 1 17 5"></path><circle cx="19" cy="5" r="2"></circle><circle cx="5" cy="19" r="2"></circle></svg><span>SplinePointer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Spline.html" title="Spline path pen tool shape curve draw design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="19" cy="5" r="2"></circle><circle cx="5" cy="19" r="2"></circle><path d="M5 17A12 12 0 0 1 17 5"></path></svg><span>Spline</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Split.html" title="Split break disband divide separate branch disunite development arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3h5v5"></path><path d="M8 3H3v5"></path><path d="M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3"></path><path d="m15 9 6-6"></path></svg><span>Split</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Spool.html" title="Spool bobbin spindle yarn thread string sewing needlework communication tools social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66"></path><path d="m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178"></path></svg><span>Spool</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SportShoe.html" title="SportShoe footwear sports running athletic shoe sneaker training exercise fitness sports"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 10.42 4.8-5.07"></path><path d="M19 18h3"></path><path d="M9.5 22 21.414 9.415A2 2 0 0 0 21.2 6.4l-5.61-4.208A1 1 0 0 0 14 3v2a2 2 0 0 1-1.394 1.906L8.677 8.053A1 1 0 0 0 8 9c-.155 6.393-2.082 9-4 9a2 2 0 0 0 0 4h14"></path></svg><span>SportShoe</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Spotlight.html" title="Spotlight winner soapbox stage entertainment drama podium actor actress singer light beam play theatre show focus concert performance lens leaderboard followspot best highlight devices photography multimedia communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.295 19.562 16 22"></path><path d="m17 16 3.758 2.098"></path><path d="m19 12.5 3.026-.598"></path><path d="M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"></path><path d="M8 9V2"></path></svg><span>Spotlight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SprayCan.html" title="SprayCan paint color graffiti decoration aerosol deodorant shaving foam air freshener design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h.01"></path><path d="M7 5h.01"></path><path d="M11 7h.01"></path><path d="M3 7h.01"></path><path d="M7 9h.01"></path><path d="M3 11h.01"></path><rect height="4" width="4" x="15" y="5"></rect><path d="m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2"></path><path d="m13 14 8-2"></path><path d="m13 19 8-2"></path></svg><span>SprayCan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sprout.html" title="Sprout eco green growth leaf nature plant seed spring sustainability nature gaming sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3"></path><path d="M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4"></path><path d="M5 21h14"></path></svg><span>Sprout</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareActivity.html" title="SquareActivity pulse action motion movement exercise fitness healthcare heart rate monitor vital signs vitals emergency room er intensive care hospital defibrillator earthquake siesmic magnitude richter scale aftershock tremor shockwave audio waveform synthesizer synthesiser music medical social science multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M17 12h-2l-2 5-2-10-2 5H7"></path></svg><span>SquareActivity</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowDownLeft.html" title="SquareArrowDownLeft direction south-west diagonal sign turn keyboard button arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m16 8-8 8"></path><path d="M16 16H8V8"></path></svg><span>SquareArrowDownLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowDownRight.html" title="SquareArrowDownRight direction south-east diagonal sign turn keyboard button arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m8 8 8 8"></path><path d="M16 8v8H8"></path></svg><span>SquareArrowDownRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowDown.html" title="SquareArrowDown backwards reverse direction south sign keyboard button arrows gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M12 8v8"></path><path d="m8 12 4 4 4-4"></path></svg><span>SquareArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowLeft.html" title="SquareArrowLeft previous back direction west sign keyboard button &lt;- arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m12 8-4 4 4 4"></path><path d="M16 12H8"></path></svg><span>SquareArrowLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowOutDownLeft.html" title="SquareArrowOutDownLeft outwards direction south-west diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6"></path><path d="m3 21 9-9"></path><path d="M9 21H3v-6"></path></svg><span>SquareArrowOutDownLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowOutDownRight.html" title="SquareArrowOutDownRight outwards direction south-east diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"></path><path d="m21 21-9-9"></path><path d="M21 15v6h-6"></path></svg><span>SquareArrowOutDownRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowOutUpLeft.html" title="SquareArrowOutUpLeft outwards direction north-west diagonal arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6"></path><path d="m3 3 9 9"></path><path d="M3 9V3h6"></path></svg><span>SquareArrowOutUpLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowOutUpRight.html" title="SquareArrowOutUpRight outwards direction north-east diagonal share open external link arrows social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"></path><path d="m21 3-9 9"></path><path d="M15 3h6v6"></path></svg><span>SquareArrowOutUpRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowRightEnter.html" title="SquareArrowRightEnter left in inside input insert source import place -&gt; arrows shapes layout multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 16 4-4-4-4"></path><path d="M3 12h11"></path><path d="M3 8V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"></path></svg><span>SquareArrowRightEnter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowRightExit.html" title="SquareArrowRightExit out outside output export -&gt; arrows shapes layout multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12h11"></path><path d="m17 16 4-4-4-4"></path><path d="M21 6.344V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1.344"></path></svg><span>SquareArrowRightExit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowRight.html" title="SquareArrowRight next forward direction west sign keyboard button -&gt; arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M8 12h8"></path><path d="m12 16 4-4-4-4"></path></svg><span>SquareArrowRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowUpLeft.html" title="SquareArrowUpLeft direction north-west diagonal sign keyboard button arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M8 16V8h8"></path><path d="M16 16 8 8"></path></svg><span>SquareArrowUpLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowUpRight.html" title="SquareArrowUpRight direction north-east diagonal sign keyboard button share arrows social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M8 8h8v8"></path><path d="m8 16 8-8"></path></svg><span>SquareArrowUpRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareArrowUp.html" title="SquareArrowUp forward direction north sign keyboard button arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m16 12-4-4-4 4"></path><path d="M12 16V8"></path></svg><span>SquareArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareAsterisk.html" title="SquareAsterisk password secret access key multiply multiplication glob pattern wildcard * text security math development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M12 8v8"></path><path d="m8.5 14 7-4"></path><path d="m8.5 10 7 4"></path></svg><span>SquareAsterisk</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareBottomDashedScissors.html" title="SquareBottomDashedScissors cut snippet chop stationery crafts text design tools files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" x2="19" y1="3" y2="3"></line><line x1="3" x2="3" y1="5" y2="19"></line><line x1="21" x2="21" y1="5" y2="19"></line><line x1="9" x2="10" y1="21" y2="21"></line><line x1="14" x2="15" y1="21" y2="21"></line><path d="M 3 5 A2 2 0 0 1 5 3"></path><path d="M 19 3 A2 2 0 0 1 21 5"></path><path d="M 5 21 A2 2 0 0 1 3 19"></path><path d="M 21 19 A2 2 0 0 1 19 21"></path><circle cx="8.5" cy="8.5" r="1.5"></circle><line x1="9.56066" x2="12" y1="9.56066" y2="12"></line><line x1="17" x2="14.82" y1="17" y2="14.82"></line><circle cx="8.5" cy="15.5" r="1.5"></circle><line x1="9.56066" x2="17" y1="14.43934" y2="7"></line></svg><span>SquareBottomDashedScissors</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareCenterlineDashedHorizontal.html" title="SquareCenterlineDashedHorizontal reflect mirror alignment dashed design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"></path><path d="M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"></path><path d="M12 20v2"></path><path d="M12 14v2"></path><path d="M12 8v2"></path><path d="M12 2v2"></path></svg><span>SquareCenterlineDashedHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareCenterlineDashedVertical.html" title="SquareCenterlineDashedVertical reflect mirror alignment dashed design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"></path><path d="M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"></path><path d="M4 12H2"></path><path d="M10 12H8"></path><path d="M16 12h-2"></path><path d="M22 12h-2"></path></svg><span>SquareCenterlineDashedVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareChartGantt.html" title="SquareChartGantt projects manage overview roadmap plan intentions timeline deadline date event range period productivity work agile code coding toolbar button charts time development design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 8h7"></path><path d="M8 12h6"></path><path d="M11 16h5"></path></svg><span>SquareChartGantt</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareCheckBig.html" title="SquareCheckBig done todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"></path><path d="m9 11 3 3L22 4"></path></svg><span>SquareCheckBig</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareCheck.html" title="SquareCheck done todo tick complete task notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m9 12 2 2 4-4"></path></svg><span>SquareCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareChevronDown.html" title="SquareChevronDown back menu panel arrows navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m16 10-4 4-4-4"></path></svg><span>SquareChevronDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareChevronLeft.html" title="SquareChevronLeft back previous less than fewer menu panel button keyboard &lt; arrows navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m14 16-4-4 4-4"></path></svg><span>SquareChevronLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareChevronRight.html" title="SquareChevronRight forward next more than greater menu panel code coding command line terminal prompt shell console &gt; arrows navigation development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m10 8 4 4-4 4"></path></svg><span>SquareChevronRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareChevronUp.html" title="SquareChevronUp caret keyboard button mac control ctrl superscript exponential power ahead menu panel ^ arrows navigation math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m8 14 4-4 4 4"></path></svg><span>SquareChevronUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareCode.html" title="SquareCode gist source programming html xml coding text development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 9-3 3 3 3"></path><path d="m14 15 3-3-3-3"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>SquareCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashedBottomCode.html" title="SquareDashedBottomCode rectangle aspect ratio 1:1 shape snippet code coding development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 9.5 8 12l2 2.5"></path><path d="M14 21h1"></path><path d="m14 9.5 2 2.5-2 2.5"></path><path d="M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"></path><path d="M9 21h1"></path></svg><span>SquareDashedBottomCode</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashedBottom.html" title="SquareDashedBottom rectangle aspect ratio 1:1 shape snippet code coding development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"></path><path d="M9 21h1"></path><path d="M14 21h1"></path></svg><span>SquareDashedBottom</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashedKanban.html" title="SquareDashedKanban projects manage overview board tickets issues roadmap plan intentions productivity work agile draft template boilerplate code coding charts development design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 7v7"></path><path d="M12 7v4"></path><path d="M16 7v9"></path><path d="M5 3a2 2 0 0 0-2 2"></path><path d="M9 3h1"></path><path d="M14 3h1"></path><path d="M19 3a2 2 0 0 1 2 2"></path><path d="M21 9v1"></path><path d="M21 14v1"></path><path d="M21 19a2 2 0 0 1-2 2"></path><path d="M14 21h1"></path><path d="M9 21h1"></path><path d="M5 21a2 2 0 0 1-2-2"></path><path d="M3 14v1"></path><path d="M3 9v1"></path></svg><span>SquareDashedKanban</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashedMousePointer.html" title="SquareDashedMousePointer inspector element mouse click pointer box browser selector target dom node arrows cursors development tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"></path><path d="M5 3a2 2 0 0 0-2 2"></path><path d="M19 3a2 2 0 0 1 2 2"></path><path d="M5 21a2 2 0 0 1-2-2"></path><path d="M9 3h1"></path><path d="M9 21h2"></path><path d="M14 3h1"></path><path d="M3 9v1"></path><path d="M21 9v2"></path><path d="M3 14v1"></path></svg><span>SquareDashedMousePointer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashedText.html" title="SquareDashedText find search selection dashed text cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 21h1"></path><path d="M14 3h1"></path><path d="M19 3a2 2 0 0 1 2 2"></path><path d="M21 14v1"></path><path d="M21 19a2 2 0 0 1-2 2"></path><path d="M21 9v1"></path><path d="M3 14v1"></path><path d="M3 9v1"></path><path d="M5 21a2 2 0 0 1-2-2"></path><path d="M5 3a2 2 0 0 0-2 2"></path><path d="M7 12h10"></path><path d="M7 16h6"></path><path d="M7 8h8"></path><path d="M9 21h1"></path><path d="M9 3h1"></path></svg><span>SquareDashedText</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashedTopSolid.html" title="SquareDashedTopSolid square border width layout style design rectangular marquee dashed box rectangle aspect ratio 1:1 design development layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 21h1"></path><path d="M21 14v1"></path><path d="M21 19a2 2 0 0 1-2 2"></path><path d="M21 9v1"></path><path d="M3 14v1"></path><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"></path><path d="M3 9v1"></path><path d="M5 21a2 2 0 0 1-2-2"></path><path d="M9 21h1"></path></svg><span>SquareDashedTopSolid</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDashed.html" title="SquareDashed selection square rectangular marquee tool dashed box text design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 3a2 2 0 0 0-2 2"></path><path d="M19 3a2 2 0 0 1 2 2"></path><path d="M21 19a2 2 0 0 1-2 2"></path><path d="M5 21a2 2 0 0 1-2-2"></path><path d="M9 3h1"></path><path d="M9 21h1"></path><path d="M14 3h1"></path><path d="M14 21h1"></path><path d="M3 9v1"></path><path d="M21 9v1"></path><path d="M3 14v1"></path><path d="M21 14v1"></path></svg><span>SquareDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDivide.html" title="SquareDivide calculate math ÷ / math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><line x1="8" x2="16" y1="12" y2="12"></line><line x1="12" x2="12" y1="16" y2="16"></line><line x1="12" x2="12" y1="8" y2="8"></line></svg><span>SquareDivide</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareDot.html" title="SquareDot git diff modified . development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><circle cx="12" cy="12" r="1"></circle></svg><span>SquareDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareEqual.html" title="SquareEqual calculate = math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7 10h10"></path><path d="M7 14h10"></path></svg><span>SquareEqual</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareFunction.html" title="SquareFunction programming code automation math development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"></path><path d="M9 11.2h5.7"></path></svg><span>SquareFunction</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareKanban.html" title="SquareKanban projects manage overview board tickets issues roadmap plan intentions productivity work agile code coding toolbar button charts development design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M8 7v7"></path><path d="M12 7v4"></path><path d="M16 7v9"></path></svg><span>SquareKanban</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareLibrary.html" title="SquareLibrary books reading written authors stories fiction novels information knowledge education high school university college academy learning study research collection vinyl records albums music package text photography multimedia navigation development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7 7v10"></path><path d="M11 7v10"></path><path d="m15 7 2 10"></path></svg><span>SquareLibrary</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareM.html" title="SquareM metro subway underground track line transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>SquareM</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareMenu.html" title="SquareMenu bars navigation hamburger options menu bar panel layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7 8h10"></path><path d="M7 12h10"></path><path d="M7 16h10"></path></svg><span>SquareMenu</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareMinus.html" title="SquareMinus subtract remove decrease reduce calculator button keyboard line divider separator horizontal rule hr html markup markdown --- toolbar operator code coding minimum downgrade math development text tools devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M8 12h8"></path></svg><span>SquareMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareMousePointer.html" title="SquareMousePointer inspector element mouse click pointer box browser selector target dom node arrows cursors development tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"></path><path d="M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"></path></svg><span>SquareMousePointer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareParkingOff.html" title="SquareParkingOff parking lot car park no parking transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41"></path><path d="M3 8.7V19a2 2 0 0 0 2 2h10.3"></path><path d="m2 2 20 20"></path><path d="M13 13a3 3 0 1 0 0-6H9v2"></path><path d="M9 17v-2.3"></path></svg><span>SquareParkingOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareParking.html" title="SquareParking parking lot car park transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 17V7h4a3 3 0 0 1 0 6H9"></path></svg><span>SquareParking</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePause.html" title="SquarePause music audio stop multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><line x1="10" x2="10" y1="15" y2="9"></line><line x1="14" x2="14" y1="15" y2="9"></line></svg><span>SquarePause</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePen.html" title="SquarePen pencil edit change create draw sketch draft writer writing biro ink marker felt tip stationery artist text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path><path d="M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z"></path></svg><span>SquarePen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePercent.html" title="SquarePercent verified unverified sale discount offer marketing sticker price tag social finance shopping math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="m15 9-6 6"></path><path d="M9 9h.01"></path><path d="M15 15h.01"></path></svg><span>SquarePercent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePi.html" title="SquarePi constant code coding programming symbol trigonometry geometry formula development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M7 7h10"></path><path d="M10 7v10"></path><path d="M16 17a2 2 0 0 1-2-2V7"></path></svg><span>SquarePi</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePilcrow.html" title="SquarePilcrow paragraph mark paraph blind typography type text prose symbol text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M12 12H9.5a2.5 2.5 0 0 1 0-5H17"></path><path d="M12 7v10"></path><path d="M16 7v10"></path></svg><span>SquarePilcrow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePlay.html" title="SquarePlay music audio video start run arrows multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"></path></svg><span>SquarePlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePlus.html" title="SquarePlus add new increase increment positive calculate calculator button keyboard toolbar maximum upgrade extra operator join concatenate code coding + math tools development text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M8 12h8"></path><path d="M12 8v8"></path></svg><span>SquarePlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquarePower.html" title="SquarePower on off device switch toggle binary boolean reboot restart button keyboard troubleshoot connectivity"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v4"></path><path d="M7.998 9.003a5 5 0 1 0 8-.005"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>SquarePower</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareRadical.html" title="SquareRadical calculate formula math operator root square symbol development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 12h2l2 5 2-10h4"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>SquareRadical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareRoundCorner.html" title="SquareRoundCorner border radius style design corner layout round rounded design development layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11a8 8 0 0 0-8-8"></path><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path></svg><span>SquareRoundCorner</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareScissors.html" title="SquareScissors cut snippet chop stationery crafts toolbar button text design tools files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><line x1="9.56066" x2="12" y1="9.56066" y2="12"></line><line x1="17" x2="14.82" y1="17" y2="14.82"></line><circle cx="8.5" cy="15.5" r="1.5"></circle><line x1="9.56066" x2="17" y1="14.43934" y2="7"></line></svg><span>SquareScissors</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareSigma.html" title="SquareSigma sum calculate formula math enumeration enumerate text math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M16 8.9V7H8l4 5-4 5h8v-1.9"></path></svg><span>SquareSigma</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareSlash.html" title="SquareSlash git diff ignored divide division shortcut or / development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><line x1="9" x2="15" y1="15" y2="9"></line></svg><span>SquareSlash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareSplitHorizontal.html" title="SquareSplitHorizontal split divide layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3"></path><path d="M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3"></path><line x1="12" x2="12" y1="4" y2="20"></line></svg><span>SquareSplitHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareSplitVertical.html" title="SquareSplitVertical split divide layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3"></path><path d="M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3"></path><line x1="4" x2="20" y1="12" y2="12"></line></svg><span>SquareSplitVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareSquare.html" title="SquareSquare float center rectangle layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><rect height="8" rx="1" width="8" x="8" y="8"></rect></svg><span>SquareSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareStack.html" title="SquareStack versions clone copy duplicate multiple revisions version control backup history text files development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"></path><path d="M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"></path><rect height="8" rx="2" width="8" x="14" y="14"></rect></svg><span>SquareStack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareStar.html" title="SquareStar badge medal honour decoration order pin laurel trophy medallion insignia bronze silver gold sports gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>SquareStar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareStop.html" title="SquareStop media music multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><rect height="6" rx="1" width="6" x="9" y="9"></rect></svg><span>SquareStop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareTerminal.html" title="SquareTerminal code command line prompt shell development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 11 2-2-2-2"></path><path d="M11 13h4"></path><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect></svg><span>SquareTerminal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareUserRound.html" title="SquareUserRound person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 21a6 6 0 0 0-12 0"></path><circle cx="12" cy="11" r="4"></circle><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>SquareUserRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareUser.html" title="SquareUser person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><circle cx="12" cy="10" r="3"></circle><path d="M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"></path></svg><span>SquareUser</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquareX.html" title="SquareX cancel close delete remove times clear math multiply multiplication math notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" ry="2" width="18" x="3" y="3"></rect><path d="m15 9-6 6"></path><path d="m9 9 6 6"></path></svg><span>SquareX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Square.html" title="Square stop playback music audio video rectangle aspect ratio 1:1 shape shapes multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>Square</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquaresExclude.html" title="SquaresExclude square pathfinder path exclude invert xor shape vector design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0"></path><path d="M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2"></path></svg><span>SquaresExclude</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquaresIntersect.html" title="SquaresIntersect square pathfinder path intersect shape include vector design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 22a2 2 0 0 1-2-2"></path><path d="M14 2a2 2 0 0 1 2 2"></path><path d="M16 22h-2"></path><path d="M2 10V8"></path><path d="M2 4a2 2 0 0 1 2-2"></path><path d="M20 8a2 2 0 0 1 2 2"></path><path d="M22 14v2"></path><path d="M22 20a2 2 0 0 1-2 2"></path><path d="M4 16a2 2 0 0 1-2-2"></path><path d="M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z"></path><path d="M8 2h2"></path></svg><span>SquaresIntersect</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquaresSubtract.html" title="SquaresSubtract square pathfinder path minus subtract subtraction shape front vector design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 22a2 2 0 0 1-2-2"></path><path d="M16 22h-2"></path><path d="M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z"></path><path d="M20 8a2 2 0 0 1 2 2"></path><path d="M22 14v2"></path><path d="M22 20a2 2 0 0 1-2 2"></path></svg><span>SquaresSubtract</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquaresUnite.html" title="SquaresUnite square pathfinder path unite union shape merge vector design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z"></path></svg><span>SquaresUnite</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SquircleDashed.html" title="SquircleDashed shape pending progress issue draft code coding version control development shapes design"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.77 3.043a34 34 0 0 0-3.54 0"></path><path d="M13.771 20.956a33 33 0 0 1-3.541.001"></path><path d="M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"></path><path d="M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"></path><path d="M20.957 10.23a33 33 0 0 1 0 3.54"></path><path d="M3.043 10.23a34 34 0 0 0 .001 3.541"></path><path d="M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"></path><path d="M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"></path></svg><span>SquircleDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Squircle.html" title="Squircle shape shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9"></path></svg><span>Squircle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Squirrel.html" title="Squirrel animal rodent pet pest nuts retrieve updates storage stash animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.236 22a3 3 0 0 0-2.2-5"></path><path d="M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"></path><path d="M18 13h.01"></path><path d="M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"></path></svg><span>Squirrel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Stamp.html" title="Stamp mark print clone loyalty library design cursors tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13"></path><path d="M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z"></path><path d="M5 22h14"></path></svg><span>Stamp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StarHalf.html" title="StarHalf bookmark favorite like review rating social multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2"></path></svg><span>StarHalf</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StarOff.html" title="StarOff dislike unlike remove unrate multimedia social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.344 4.688 1.181-2.393a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.237 3.152"></path><path d="m17.945 17.945.43 2.505a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a8 8 0 0 0 .4-.099"></path><path d="m2 2 20 20"></path></svg><span>StarOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Star.html" title="Star bookmark favorite like review rating account social shapes multimedia weather emoji gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path></svg><span>Star</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StepBack.html" title="StepBack arrow previous music left reverse multimedia arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"></path><path d="M21 20V4"></path></svg><span>StepBack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StepForward.html" title="StepForward arrow next music right continue multimedia arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"></path><path d="M3 4v16"></path></svg><span>StepForward</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Stethoscope.html" title="Stethoscope phonendoscope medical heart lungs sound science medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 2v2"></path><path d="M5 2v2"></path><path d="M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1"></path><path d="M8 15a6 6 0 0 0 12 0v-3"></path><circle cx="20" cy="10" r="2"></circle></svg><span>Stethoscope</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sticker.html" title="Sticker reaction emotion smile happy feedback social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z"></path><path d="M15 3v5a1 1 0 0 0 1 1h5"></path><path d="M8 13h.01"></path><path d="M16 13h.01"></path><path d="M10 16s.8 1 2 1c1.3 0 2-1 2-1"></path></svg><span>Sticker</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StickyNote.html" title="StickyNote post-it comment annotation reaction memo reminder todo task idea brainstorm document page paper sheet stationary office text social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z"></path><path d="M15 3v5a1 1 0 0 0 1 1h5"></path></svg><span>StickyNote</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Stone.html" title="Stone mineral geology nature solid pebble crystal ore hard coal stone rock boulder nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.264 2.205A4 4 0 0 0 6.42 4.211l-4 8a4 4 0 0 0 1.359 5.117l6 4a4 4 0 0 0 4.438 0l6-4a4 4 0 0 0 1.576-4.592l-2-6a4 4 0 0 0-2.53-2.53z"></path><path d="M11.99 22 14 12l7.822 3.184"></path><path d="M14 12 8.47 2.302"></path></svg><span>Stone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Store.html" title="Store shop supermarket stand boutique building buildings navigation shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5"></path><path d="M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244"></path><path d="M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05"></path></svg><span>Store</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StretchHorizontal.html" title="StretchHorizontal items flex justify distribute layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="2" width="20" x="2" y="4"></rect><rect height="6" rx="2" width="20" x="2" y="14"></rect></svg><span>StretchHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.StretchVertical.html" title="StretchVertical items flex justify distribute layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" width="6" x="4" y="2"></rect><rect height="20" rx="2" width="6" x="14" y="2"></rect></svg><span>StretchVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Strikethrough.html" title="Strikethrough cross out delete remove format text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4H9a3 3 0 0 0-2.83 4"></path><path d="M14 12a4 4 0 0 1 0 8H6"></path><line x1="4" x2="20" y1="12" y2="12"></line></svg><span>Strikethrough</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Subscript.html" title="Subscript text text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m4 5 8 8"></path><path d="m12 5-8 8"></path><path d="M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"></path></svg><span>Subscript</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SunDim.html" title="SunDim brightness dim low brightness low accessibility weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"></circle><path d="M12 4h.01"></path><path d="M20 12h.01"></path><path d="M12 20h.01"></path><path d="M4 12h.01"></path><path d="M17.657 6.343h.01"></path><path d="M17.657 17.657h.01"></path><path d="M6.343 17.657h.01"></path><path d="M6.343 6.343h.01"></path></svg><span>SunDim</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SunMedium.html" title="SunMedium brightness medium accessibility weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"></circle><path d="M12 3v1"></path><path d="M12 20v1"></path><path d="M3 12h1"></path><path d="M20 12h1"></path><path d="m18.364 5.636-.707.707"></path><path d="m6.343 17.657-.707.707"></path><path d="m5.636 5.636.707.707"></path><path d="m17.657 17.657.707.707"></path></svg><span>SunMedium</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SunMoon.html" title="SunMoon dark light moon sun brightness theme auto theme system theme appearance accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v2"></path><path d="M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715"></path><path d="M16 12a4 4 0 0 0-4-4"></path><path d="m19 5-1.256 1.256"></path><path d="M20 12h2"></path></svg><span>SunMoon</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SunSnow.html" title="SunSnow weather air conditioning temperature hot cold seasons weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 21v-1"></path><path d="M10 4V3"></path><path d="M10 9a3 3 0 0 0 0 6"></path><path d="m14 20 1.25-2.5L18 18"></path><path d="m14 4 1.25 2.5L18 6"></path><path d="m17 21-3-6 1.5-3H22"></path><path d="m17 3-3 6 1.5 3"></path><path d="M2 12h1"></path><path d="m20 10-1.5 2 1.5 2"></path><path d="m3.64 18.36.7-.7"></path><path d="m4.34 6.34-.7-.7"></path></svg><span>SunSnow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sun.html" title="Sun brightness weather light summer accessibility weather seasons sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"></circle><path d="M12 2v2"></path><path d="M12 20v2"></path><path d="m4.93 4.93 1.41 1.41"></path><path d="m17.66 17.66 1.41 1.41"></path><path d="M2 12h2"></path><path d="M20 12h2"></path><path d="m6.34 17.66-1.41 1.41"></path><path d="m19.07 4.93-1.41 1.41"></path></svg><span>Sun</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sunrise.html" title="Sunrise weather time morning day arrows weather time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v8"></path><path d="m4.93 10.93 1.41 1.41"></path><path d="M2 18h2"></path><path d="M20 18h2"></path><path d="m19.07 10.93-1.41 1.41"></path><path d="M22 22H2"></path><path d="m8 6 4-4 4 4"></path><path d="M16 18a4 4 0 0 0-8 0"></path></svg><span>Sunrise</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sunset.html" title="Sunset weather time evening night arrows weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10V2"></path><path d="m4.93 10.93 1.41 1.41"></path><path d="M2 18h2"></path><path d="M20 18h2"></path><path d="m19.07 10.93-1.41 1.41"></path><path d="M22 22H2"></path><path d="m16 6-4 4-4-4"></path><path d="M16 18a4 4 0 0 0-8 0"></path></svg><span>Sunset</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Superscript.html" title="Superscript text exponent text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m4 19 8-8"></path><path d="m12 19-8-8"></path><path d="M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"></path></svg><span>Superscript</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SwatchBook.html" title="SwatchBook colors colours swatches pantone shades tint hue saturation brightness theme scheme palette samples textile carpet design home photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z"></path><path d="M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"></path><path d="M 7 17h.01"></path><path d="m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"></path></svg><span>SwatchBook</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SwissFranc.html" title="SwissFranc currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 21V3h8"></path><path d="M6 16h9"></path><path d="M10 9.5h7"></path></svg><span>SwissFranc</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.SwitchCamera.html" title="SwitchCamera photo selfie front back communication devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"></path><path d="M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"></path><circle cx="12" cy="12" r="3"></circle><path d="m18 22-3-3 3-3"></path><path d="m6 2 3 3-3 3"></path></svg><span>SwitchCamera</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Sword.html" title="Sword battle challenge game war weapon gaming tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m11 19-6-6"></path><path d="m5 21-2-2"></path><path d="m8 16-4 4"></path><path d="M9.5 17.5 21 6V3h-3L6.5 14.5"></path></svg><span>Sword</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Swords.html" title="Swords battle challenge game war weapon gaming tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="14.5 17.5 3 6 3 3 6 3 17.5 14.5"></polyline><line x1="13" x2="19" y1="19" y2="13"></line><line x1="16" x2="20" y1="16" y2="20"></line><line x1="19" x2="21" y1="21" y2="19"></line><polyline points="14.5 6.5 18 3 21 3 21 6 17.5 9.5"></polyline><line x1="5" x2="9" y1="14" y2="18"></line><line x1="7" x2="4" y1="17" y2="20"></line><line x1="3" x2="5" y1="19" y2="21"></line></svg><span>Swords</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Syringe.html" title="Syringe medicine medical needle pump plunger nozzle blood science medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18 2 4 4"></path><path d="m17 7 3-3"></path><path d="M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"></path><path d="m9 11 4 4"></path><path d="m5 19-3 3"></path><path d="m14 4 6 6"></path></svg><span>Syringe</span></a>
</div>
<h3>T</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Table2.html" title="Table2 spreadsheet grid text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"></path></svg><span>Table2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TableCellsMerge.html" title="TableCellsMerge spreadsheet grid row text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 21v-6"></path><path d="M12 9V3"></path><path d="M3 15h18"></path><path d="M3 9h18"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>TableCellsMerge</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TableCellsSplit.html" title="TableCellsSplit spreadsheet grid row text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 15V9"></path><path d="M3 15h18"></path><path d="M3 9h18"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect></svg><span>TableCellsSplit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TableColumnsSplit.html" title="TableColumnsSplit spreadsheet grid cut break divide separate segment text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 14v2"></path><path d="M14 20v2"></path><path d="M14 2v2"></path><path d="M14 8v2"></path><path d="M2 15h8"></path><path d="M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2"></path><path d="M2 9h8"></path><path d="M22 15h-4"></path><path d="M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"></path><path d="M22 9h-4"></path><path d="M5 3v18"></path></svg><span>TableColumnsSplit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TableOfContents.html" title="TableOfContents toc outline navigation document structure index overview sections chapters content documentation manual knowledge base faq text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 5H3"></path><path d="M16 12H3"></path><path d="M16 19H3"></path><path d="M21 5h.01"></path><path d="M21 12h.01"></path><path d="M21 19h.01"></path></svg><span>TableOfContents</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TableProperties.html" title="TableProperties property list plist spreadsheet grid dictionary object hash text development files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3v18"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M21 9H3"></path><path d="M21 15H3"></path></svg><span>TableProperties</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TableRowsSplit.html" title="TableRowsSplit spreadsheet grid cut break divide separate segment text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 10h2"></path><path d="M15 22v-8"></path><path d="M15 2v4"></path><path d="M2 10h2"></path><path d="M20 10h2"></path><path d="M3 19h18"></path><path d="M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6"></path><path d="M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2"></path><path d="M8 10h2"></path><path d="M9 22v-8"></path><path d="M9 2v4"></path></svg><span>TableRowsSplit</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Table.html" title="Table spreadsheet grid text files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v18"></path><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9h18"></path><path d="M3 15h18"></path></svg><span>Table</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TabletSmartphone.html" title="TabletSmartphone responsive screens browser testing mobile devices design development tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="14" rx="2" width="10" x="3" y="8"></rect><path d="M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4"></path><path d="M8 18h.01"></path></svg><span>TabletSmartphone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tablet.html" title="Tablet device devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="20" rx="2" ry="2" width="16" x="4" y="2"></rect><line x1="12" x2="12.01" y1="18" y2="18"></line></svg><span>Tablet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tablets.html" title="Tablets medicine medication drug prescription pills pharmacy medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="7" cy="7" r="5"></circle><circle cx="17" cy="17" r="5"></circle><path d="M12 17h10"></path><path d="m3.46 10.54 7.08-7.08"></path></svg><span>Tablets</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tag.html" title="Tag label badge ticket mark account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z"></path><circle cx="7.5" cy="7.5" fill="currentColor" r=".5"></circle></svg><span>Tag</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tags.html" title="Tags labels badges tickets marks copy multiple account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z"></path><path d="M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193"></path><circle cx="10.5" cy="6.5" fill="currentColor" r=".5"></circle></svg><span>Tags</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tally1.html" title="Tally1 count score enumerate days one 1 first bar prison cell sentence math gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4v16"></path></svg><span>Tally1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tally2.html" title="Tally2 count score enumerate days two 2 second double bars prison cell sentence math gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4v16"></path><path d="M9 4v16"></path></svg><span>Tally2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tally3.html" title="Tally3 count score enumerate days three 3 third triple bars prison cell sentence math gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4v16"></path><path d="M9 4v16"></path><path d="M14 4v16"></path></svg><span>Tally3</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tally4.html" title="Tally4 count score enumerate days 4 fourth quadruple bars prison cell sentence math gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4v16"></path><path d="M9 4v16"></path><path d="M14 4v16"></path><path d="M19 4v16"></path></svg><span>Tally4</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tally5.html" title="Tally5 count score enumerate days five 5 fifth bars prison cell sentence slash / math gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4v16"></path><path d="M9 4v16"></path><path d="M14 4v16"></path><path d="M19 4v16"></path><path d="M22 6 2 18"></path></svg><span>Tally5</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tangent.html" title="Tangent tangential shape circle geometry trigonometry bezier curve shapes math design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="17" cy="4" r="2"></circle><path d="M15.59 5.41 5.41 15.59"></path><circle cx="4" cy="17" r="2"></circle><path d="M12 22s-4-9-1.5-11.5S22 12 22 12"></path></svg><span>Tangent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Target.html" title="Target logo bullseye deadline projects overview work productivity gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="6"></circle><circle cx="12" cy="12" r="2"></circle></svg><span>Target</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Telescope.html" title="Telescope astronomy space discovery exploration explore vision perspective focus stargazing observe view science development tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"></path><path d="m13.56 11.747 4.332-.924"></path><path d="m16 21-3.105-6.21"></path><path d="M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"></path><path d="m6.158 8.633 1.114 4.456"></path><path d="m8 21 3.105-6.21"></path><circle cx="12" cy="13" r="2"></circle></svg><span>Telescope</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TentTree.html" title="TentTree camping campsite holiday retreat nomadic wilderness outdoors travel nature"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="4" cy="4" r="2"></circle><path d="m14 5 3-3 3 3"></path><path d="m14 10 3-3 3 3"></path><path d="M17 14V2"></path><path d="M17 14H7l-5 8h20Z"></path><path d="M8 14v8"></path><path d="m9 14 5 8"></path></svg><span>TentTree</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tent.html" title="Tent tipi teepee wigwam lodge camping campsite holiday retreat nomadic native american indian wilderness outdoors travel nature sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.5 21 14 3"></path><path d="M20.5 21 10 3"></path><path d="M15.5 21 12 15l-3.5 6"></path><path d="M2 21h20"></path></svg><span>Tent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Terminal.html" title="Terminal code command line prompt shell development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 19h8"></path><path d="m4 17 6-6-6-6"></path></svg><span>Terminal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TestTubeDiagonal.html" title="TestTubeDiagonal tube vial phial flask ampoule ampule lab chemistry experiment test science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3"></path><path d="m16 2 6 6"></path><path d="M12 16H4"></path></svg><span>TestTubeDiagonal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TestTube.html" title="TestTube tube vial phial flask ampoule ampule lab chemistry experiment test science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2"></path><path d="M8.5 2h7"></path><path d="M14.5 16h-5"></path></svg><span>TestTube</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TestTubes.html" title="TestTubes tubes vials phials flasks ampoules ampules lab chemistry experiment test science"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2"></path><path d="M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2"></path><path d="M3 2h7"></path><path d="M14 2h7"></path><path d="M9 16H4"></path><path d="M20 16h-5"></path></svg><span>TestTubes</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextAlignCenter.html" title="TextAlignCenter text alignment center text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H3"></path><path d="M17 12H7"></path><path d="M19 19H5"></path></svg><span>TextAlignCenter</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextAlignEnd.html" title="TextAlignEnd text alignment right text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H3"></path><path d="M21 12H9"></path><path d="M21 19H7"></path></svg><span>TextAlignEnd</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextAlignJustify.html" title="TextAlignJustify text alignment justified menu list text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 5h18"></path><path d="M3 12h18"></path><path d="M3 19h18"></path></svg><span>TextAlignJustify</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextAlignStart.html" title="TextAlignStart text alignment left list text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H3"></path><path d="M15 12H3"></path><path d="M17 19H3"></path></svg><span>TextAlignStart</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextCursorInput.html" title="TextCursorInput select text layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6"></path><path d="M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"></path><path d="M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"></path><path d="M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1"></path><path d="M9 6v12"></path></svg><span>TextCursorInput</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextCursor.html" title="TextCursor select text cursors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"></path><path d="M7 22h1a4 4 0 0 0 4-4v-1"></path><path d="M7 2h1a4 4 0 0 1 4 4v1"></path></svg><span>TextCursor</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextInitial.html" title="TextInitial drop cap text format typography letter font size text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 5h6"></path><path d="M15 12h6"></path><path d="M3 19h18"></path><path d="m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12"></path><path d="M3.92 10h6.16"></path></svg><span>TextInitial</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextQuote.html" title="TextQuote blockquote quotation indent reply response text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 5H3"></path><path d="M21 12H8"></path><path d="M21 19H8"></path><path d="M3 12v7"></path></svg><span>TextQuote</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextSearch.html" title="TextSearch find data copy txt pdf document scan magnifier magnifying glass lens text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 5H3"></path><path d="M10 12H3"></path><path d="M10 19H3"></path><circle cx="17" cy="15" r="3"></circle><path d="m21 19-1.9-1.9"></path></svg><span>TextSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TextWrap.html" title="TextWrap words lines break paragraph text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 16-3 3 3 3"></path><path d="M3 12h14.5a1 1 0 0 1 0 7H13"></path><path d="M3 19h6"></path><path d="M3 5h18"></path></svg><span>TextWrap</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Theater.html" title="Theater theater theatre entertainment podium stage musical buildings social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 10s3-3 3-8"></path><path d="M22 10s-3-3-3-8"></path><path d="M10 2c0 4.4-3.6 8-8 8"></path><path d="M14 2c0 4.4 3.6 8 8 8"></path><path d="M2 10s2 2 2 5"></path><path d="M22 10s-2 2-2 5"></path><path d="M8 15h8"></path><path d="M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"></path><path d="M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"></path></svg><span>Theater</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ThermometerSnowflake.html" title="ThermometerSnowflake temperature celsius fahrenheit weather cold freeze freezing weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 20-1.25-2.5L6 18"></path><path d="M10 4 8.75 6.5 6 6"></path><path d="M10.585 15H10"></path><path d="M2 12h6.5L10 9"></path><path d="M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"></path><path d="m4 10 1.5 2L4 14"></path><path d="m7 21 3-6-1.5-3"></path><path d="m7 3 3 6h2"></path></svg><span>ThermometerSnowflake</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ThermometerSun.html" title="ThermometerSun temperature celsius fahrenheit weather warm hot weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v2"></path><path d="M12 8a4 4 0 0 0-1.645 7.647"></path><path d="M2 12h2"></path><path d="M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"></path><path d="m4.93 4.93 1.41 1.41"></path><path d="m6.34 17.66-1.41 1.41"></path></svg><span>ThermometerSun</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Thermometer.html" title="Thermometer temperature celsius fahrenheit weather weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"></path></svg><span>Thermometer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ThumbsDown.html" title="ThumbsDown dislike bad emotion account social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z"></path><path d="M17 14V2"></path></svg><span>ThumbsDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ThumbsUp.html" title="ThumbsUp like good emotion account social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z"></path><path d="M7 10v12"></path></svg><span>ThumbsUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketCheck.html" title="TicketCheck entry pass voucher event concert show booked purchased receipt redeemed validated verified certified checked used transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="m9 12 2 2 4-4"></path></svg><span>TicketCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketMinus.html" title="TicketMinus entry pass voucher event concert show remove cancel unbook subtract decrease - transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="M9 12h6"></path></svg><span>TicketMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketPercent.html" title="TicketPercent discount reduced offer voucher entry pass event concert show book purchase % transportation shopping"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="M9 9h.01"></path><path d="m15 9-6 6"></path><path d="M15 15h.01"></path></svg><span>TicketPercent</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketPlus.html" title="TicketPlus entry pass voucher event concert show book purchase add + transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="M9 12h6"></path><path d="M12 9v6"></path></svg><span>TicketPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketSlash.html" title="TicketSlash entry pass voucher event concert show redeemed used marked checked verified spoiled invalidated void denied refused banned barred forbidden prohibited cancelled cancellation refunded delete remove clear error transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="m9.5 14.5 5-5"></path></svg><span>TicketSlash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketX.html" title="TicketX entry pass voucher event concert show cancelled cancellation refunded used void invalidated spoiled denied refused banned barred forbidden prohibited delete remove clear error x transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="m9.5 14.5 5-5"></path><path d="m9.5 9.5 5 5"></path></svg><span>TicketX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ticket.html" title="Ticket entry pass voucher event concert show perforated dashed account transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"></path><path d="M13 5v2"></path><path d="M13 17v2"></path><path d="M13 11v2"></path></svg><span>Ticket</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TicketsPlane.html" title="TicketsPlane plane trip airplane flight travel fly takeoff vacation passenger pass check-in airport transportation travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12"></path><path d="m12 13.5 3.794.506"></path><path d="m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8"></path><path d="M6 10V8"></path><path d="M6 14v1"></path><path d="M6 19v2"></path><rect height="13" rx="2" width="20" x="2" y="8"></rect></svg><span>TicketsPlane</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tickets.html" title="Tickets trip travel pass entry voucher event concert show perforated dashed travel account transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8"></path><path d="M6 10V8"></path><path d="M6 14v1"></path><path d="M6 19v2"></path><rect height="13" rx="2" width="20" x="2" y="8"></rect></svg><span>Tickets</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Timeline.html" title="Timeline tags history time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12h.01"></path><path d="M4 16h.01"></path><path d="M4 20h.01"></path><path d="M4 4h.01"></path><path d="M4 8h.01"></path><path d="M9.414 13.414a2 2 0 0 0 1.414.586H19a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-8.172a2 2 0 0 0-1.414.586L8 12z"></path><path d="M9.414 21.414a2 2 0 0 0 1.414.586H19a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-8.172a2 2 0 0 0-1.414.586L8 20z"></path><path d="M9.414 5.414A2 2 0 0 0 10.828 6H19a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-8.172a2 2 0 0 0-1.414.586L8 4z"></path></svg><span>Timeline</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TimerOff.html" title="TimerOff time timer stopwatch time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2h4"></path><path d="M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"></path><path d="M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"></path><path d="m2 2 20 20"></path><path d="M12 12v-2"></path></svg><span>TimerOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TimerReset.html" title="TimerReset time timer stopwatch time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2h4"></path><path d="M12 14v-4"></path><path d="M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"></path><path d="M9 17H4v5"></path></svg><span>TimerReset</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Timer.html" title="Timer time timer stopwatch time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="10" x2="14" y1="2" y2="2"></line><line x1="12" x2="15" y1="14" y2="11"></line><circle cx="12" cy="14" r="8"></circle></svg><span>Timer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ToggleLeft.html" title="ToggleLeft on off switch boolean layout account development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="12" r="3"></circle><rect height="14" rx="7" width="20" x="2" y="5"></rect></svg><span>ToggleLeft</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ToggleRight.html" title="ToggleRight on off switch boolean layout account development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="15" cy="12" r="3"></circle><rect height="14" rx="7" width="20" x="2" y="5"></rect></svg><span>ToggleRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Toilet.html" title="Toilet toilet potty bathroom washroom devices home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18"></path><path d="M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8"></path></svg><span>Toilet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ToolCase.html" title="ToolCase tools maintenance repair tools development home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 15h4"></path><path d="m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27"></path><path d="m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122"></path><path d="M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"></path></svg><span>ToolCase</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Toolbox.html" title="Toolbox toolkit tools trunk chest box storage utility utilities container kit set repair fix service maintenance mechanic workshop construction hardware equipment gear handyman engineering craft diy tools home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 12v4"></path><path d="M16 6a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.414l4-4A2 2 0 0 1 8 6z"></path><path d="M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"></path><path d="M2 14h20"></path><path d="M8 12v4"></path></svg><span>Toolbox</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tornado.html" title="Tornado weather wind storm hurricane weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 4H3"></path><path d="M18 8H6"></path><path d="M19 12H9"></path><path d="M16 16h-6"></path><path d="M11 20H9"></path></svg><span>Tornado</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Torus.html" title="Torus donut doughnut ring hollow 3d fast food junk food snack treat sweet sugar dessert shapes design tools food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="11" rx="3" ry="2"></ellipse><ellipse cx="12" cy="12.5" rx="10" ry="8.5"></ellipse></svg><span>Torus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TouchpadOff.html" title="TouchpadOff trackpad cursor devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20v-6"></path><path d="M19.656 14H22"></path><path d="M2 14h12"></path><path d="m2 2 20 20"></path><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"></path><path d="M9.656 4H20a2 2 0 0 1 2 2v10.344"></path></svg><span>TouchpadOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Touchpad.html" title="Touchpad trackpad cursor devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M2 14h20"></path><path d="M12 20v-6"></path></svg><span>Touchpad</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TowelRack.html" title="TowelRack flannel bathroom toiletries sanitation clean fresh dry laundry laundrette hospitality housekeeping room service spa break health club amenities hanging home travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 7h-2"></path><path d="M6.5 3h11A2.5 2.5 0 0 1 20 5.5V20a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1V5.5a1 1 0 0 0-5 0V17a1 1 0 0 0 1 1h4"></path><path d="M9 7H2"></path></svg><span>TowelRack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TowerControl.html" title="TowerControl airport travel tower transportation lighthouse travel transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z"></path><path d="M8 13v9"></path><path d="M16 22v-9"></path><path d="m9 6 1 7"></path><path d="m15 6-1 7"></path><path d="M12 6V2"></path><path d="M13 2h-2"></path></svg><span>TowerControl</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ToyBrick.html" title="ToyBrick lego block addon plugin integration gaming development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="12" rx="1" width="18" x="3" y="8"></rect><path d="M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"></path><path d="M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"></path></svg><span>ToyBrick</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tractor.html" title="Tractor farming farmer ranch harvest equipment vehicle transportation sustainability food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20"></path><path d="M16 18h-5"></path><path d="M18 5a1 1 0 0 0-1 1v5.573"></path><path d="M3 4h8.129a1 1 0 0 1 .99.863L13 11.246"></path><path d="M4 11V4"></path><path d="M7 15h.01"></path><path d="M8 10.1V4"></path><circle cx="18" cy="18" r="2"></circle><circle cx="7" cy="15" r="5"></circle></svg><span>Tractor</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrafficCone.html" title="TrafficCone roadworks tarmac safety block transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.05 10.966a5 2.5 0 0 1-8.1 0"></path><path d="m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04"></path><path d="M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z"></path><path d="M9.194 6.57a5 2.5 0 0 0 5.61 0"></path></svg><span>TrafficCone</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrainFrontTunnel.html" title="TrainFrontTunnel railway metro subway underground speed bullet fast track line transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 22V12a10 10 0 1 1 20 0v10"></path><path d="M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8"></path><path d="M10 15h.01"></path><path d="M14 15h.01"></path><path d="M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z"></path><path d="m9 19-2 3"></path><path d="m15 19 2 3"></path></svg><span>TrainFrontTunnel</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrainFront.html" title="TrainFront railway metro subway underground high-speed bullet fast track line transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3.1V7a4 4 0 0 0 8 0V3.1"></path><path d="m9 15-1-1"></path><path d="m15 15 1-1"></path><path d="M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z"></path><path d="m8 19-2 3"></path><path d="m16 19 2 3"></path></svg><span>TrainFront</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrainTrack.html" title="TrainTrack railway line transportation navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 17 17 2"></path><path d="m2 14 8 8"></path><path d="m5 11 8 8"></path><path d="m8 8 8 8"></path><path d="m11 5 8 8"></path><path d="m14 2 8 8"></path><path d="M7 22 22 7"></path></svg><span>TrainTrack</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TramFront.html" title="TramFront railway metro subway underground track line tourism transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="16" x="4" y="3"></rect><path d="M4 11h16"></path><path d="M12 3v8"></path><path d="m8 19-2 3"></path><path d="m18 22-2-3"></path><path d="M8 15h.01"></path><path d="M16 15h.01"></path></svg><span>TramFront</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Transgender.html" title="Transgender gender inclusive medical accessibility"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 16v6"></path><path d="M14 20h-4"></path><path d="M18 2h4v4"></path><path d="m2 2 7.17 7.17"></path><path d="M2 5.355V2h3.357"></path><path d="m22 2-7.17 7.17"></path><path d="M8 5 5 8"></path><circle cx="12" cy="12" r="4"></circle></svg><span>Transgender</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Trash2.html" title="Trash2 garbage delete remove bin files mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 11v6"></path><path d="M14 11v6"></path><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"></path><path d="M3 6h18"></path><path d="M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path></svg><span>Trash2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Trash.html" title="Trash empty deletion cleanup junk clear garbage delete remove bin waste recycle discard binoculars rubbish files mail"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"></path><path d="M3 6h18"></path><path d="M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path></svg><span>Trash</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TreeDeciduous.html" title="TreeDeciduous tree forest park nature nature sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z"></path><path d="M12 19v3"></path></svg><span>TreeDeciduous</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TreePalm.html" title="TreePalm vacation leisure island nature sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"></path><path d="M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"></path><path d="M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35"></path><path d="M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"></path></svg><span>TreePalm</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TreePine.html" title="TreePine tree pine forest park nature nature sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"></path><path d="M12 22v-3"></path></svg><span>TreePine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Trees.html" title="Trees tree forest park nature nature sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"></path><path d="M7 16v6"></path><path d="M13 19v3"></path><path d="M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"></path></svg><span>Trees</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrendingDown.html" title="TrendingDown statistics charts arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 17h6v-6"></path><path d="m22 17-8.5-8.5-5 5L2 7"></path></svg><span>TrendingDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrendingUpDown.html" title="TrendingUpDown arrows estimated indeterminate data fluctuation uncertain forecast variable prediction dynamic volatile charts arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.828 14.828 21 21"></path><path d="M21 16v5h-5"></path><path d="m21 3-9 9-4-4-6 6"></path><path d="M21 8V3h-5"></path></svg><span>TrendingUpDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TrendingUp.html" title="TrendingUp statistics charts arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 7h6v6"></path><path d="m22 7-8.5 8.5-5-5L2 17"></path></svg><span>TrendingUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TriangleAlert.html" title="TriangleAlert warning alert danger exclamation mark linter notifications shapes development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3"></path><path d="M12 9v4"></path><path d="M12 17h.01"></path></svg><span>TriangleAlert</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TriangleDashed.html" title="TriangleDashed equilateral delta shape pyramid hierarchy dashed shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.17 4.193a2 2 0 0 1 3.666.013"></path><path d="M14 21h2"></path><path d="m15.874 7.743 1 1.732"></path><path d="m18.849 12.952 1 1.732"></path><path d="M21.824 18.18a2 2 0 0 1-1.835 2.824"></path><path d="M4.024 21a2 2 0 0 1-1.839-2.839"></path><path d="m5.136 12.952-1 1.732"></path><path d="M8 21h2"></path><path d="m8.102 7.743-1 1.732"></path></svg><span>TriangleDashed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TriangleRight.html" title="TriangleRight volume controls controller tv remote geometry delta ramp slope incline increase shapes math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z"></path></svg><span>TriangleRight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Triangle.html" title="Triangle equilateral delta shape pyramid hierarchy shapes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"></path></svg><span>Triangle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Trophy.html" title="Trophy prize sports winner achievement award champion celebration victory sports gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"></path><path d="M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"></path><path d="M18 9h1.5a1 1 0 0 0 0-5H18"></path><path d="M4 22h16"></path><path d="M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"></path><path d="M6 9H4.5a1 1 0 0 1 0-5H6"></path></svg><span>Trophy</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TruckElectric.html" title="TruckElectric delivery van shipping haulage lorry electric transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 19V7a2 2 0 0 0-2-2H9"></path><path d="M15 19H9"></path><path d="M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14"></path><path d="M2 13v5a1 1 0 0 0 1 1h2"></path><path d="M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02"></path><circle cx="17" cy="19" r="2"></circle><circle cx="7" cy="19" r="2"></circle></svg><span>TruckElectric</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Truck.html" title="Truck delivery van shipping haulage lorry transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"></path><path d="M15 18H9"></path><path d="M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14"></path><circle cx="17" cy="18" r="2"></circle><circle cx="7" cy="18" r="2"></circle></svg><span>Truck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TurkishLira.html" title="TurkishLira currency money payment finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 4 5 9"></path><path d="m15 8.5-10 5"></path><path d="M18 12a9 9 0 0 1-9 9V3"></path></svg><span>TurkishLira</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Turntable.html" title="Turntable record player gramophone stereo phonograph vinyl lp disc platter cut music analog retro dj deck disc jockey scratch spinning multimedia home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 12.01h.01"></path><path d="M18 8v4a8 8 0 0 1-1.07 4"></path><circle cx="10" cy="12" r="4"></circle><rect height="16" rx="2" width="20" x="2" y="4"></rect></svg><span>Turntable</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Turtle.html" title="Turtle animal pet tortoise slow speed animals"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z"></path><path d="M4.82 7.9 8 10"></path><path d="M15.18 7.9 12 10"></path><path d="M16.93 10H20a2 2 0 0 1 0 4H2"></path></svg><span>Turtle</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TvMinimalPlay.html" title="TvMinimalPlay flatscreen television stream display widescreen high-definition hd 1080p 4k 8k smart digital video movie live ott running start film home cinema entertainment showtime channels catchup devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"></path><path d="M7 21h10"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect></svg><span>TvMinimalPlay</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TvMinimal.html" title="TvMinimal flatscreen television stream display widescreen high-definition hd 1080p 4k 8k smart digital video home cinema entertainment showtime channels catchup devices multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 21h10"></path><rect height="14" rx="2" width="20" x="2" y="3"></rect></svg><span>TvMinimal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Tv.html" title="Tv television stream display widescreen high-definition hd 1080p 4k 8k smart digital video entertainment showtime channels terrestrial satellite cable broadcast live frequency tune scan aerial receiver transmission signal connection connectivity devices multimedia communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m17 2-5 5-5-5"></path><rect height="15" rx="2" width="20" x="2" y="7"></rect></svg><span>Tv</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.TypeOutline.html" title="TypeOutline text font typography silhouette profile contour stroke line text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z"></path></svg><span>TypeOutline</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Type.html" title="Type text font typography text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 4v16"></path><path d="M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2"></path><path d="M9 20h6"></path></svg><span>Type</span></a>
</div>
<h3>U</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.UmbrellaOff.html" title="UmbrellaOff rain weather uncovered uninsured antivirus unprotected risky weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v7a2 2 0 0 0 4 0"></path><path d="M12 2v2"></path><path d="M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"></path><path d="m2 2 20 20"></path><path d="M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"></path></svg><span>UmbrellaOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Umbrella.html" title="Umbrella rain weather weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 13v7a2 2 0 0 0 4 0"></path><path d="M12 2v2"></path><path d="M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z"></path></svg><span>Umbrella</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Underline.html" title="Underline text format text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 4v6a6 6 0 0 0 12 0V4"></path><line x1="4" x2="20" y1="20" y2="20"></line></svg><span>Underline</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Undo2.html" title="Undo2 redo rerun history back return reverse revert direction u-turn text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 14 4 9l5-5"></path><path d="M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11"></path></svg><span>Undo2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UndoDot.html" title="UndoDot redo history step back text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 17a9 9 0 0 0-15-6.7L3 13"></path><path d="M3 7v6h6"></path><circle cx="12" cy="17" r="1"></circle></svg><span>UndoDot</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Undo.html" title="Undo redo rerun history text arrows"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7v6h6"></path><path d="M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"></path></svg><span>Undo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UnfoldHorizontal.html" title="UnfoldHorizontal arrow collapse fold vertical dashed arrows layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 12h6"></path><path d="M8 12H2"></path><path d="M12 2v2"></path><path d="M12 8v2"></path><path d="M12 14v2"></path><path d="M12 20v2"></path><path d="m19 15 3-3-3-3"></path><path d="m5 9-3 3 3 3"></path></svg><span>UnfoldHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UnfoldVertical.html" title="UnfoldVertical arrow expand vertical dashed arrows layout"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-6"></path><path d="M12 8V2"></path><path d="M4 12H2"></path><path d="M10 12H8"></path><path d="M16 12h-2"></path><path d="M22 12h-2"></path><path d="m15 19-3 3-3-3"></path><path d="m15 5-3-3-3 3"></path></svg><span>UnfoldVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Ungroup.html" title="Ungroup cubes packages parts units collection cluster separate shapes files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="6" rx="1" width="8" x="5" y="4"></rect><rect height="6" rx="1" width="8" x="11" y="14"></rect></svg><span>Ungroup</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.University.html" title="University building education childhood school college academy institute buildings navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 21v-3a2 2 0 0 0-4 0v3"></path><path d="M18 12h.01"></path><path d="M18 16h.01"></path><path d="M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"></path><path d="M6 12h.01"></path><path d="M6 16h.01"></path><circle cx="12" cy="10" r="2"></circle></svg><span>University</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Unlink2.html" title="Unlink2 url unchain text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"></path></svg><span>Unlink2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Unlink.html" title="Unlink url unchain text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"></path><path d="m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"></path><line x1="8" x2="8" y1="2" y2="5"></line><line x1="2" x2="5" y1="8" y2="8"></line><line x1="16" x2="16" y1="19" y2="22"></line><line x1="19" x2="22" y1="16" y2="16"></line></svg><span>Unlink</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Unplug.html" title="Unplug electricity energy electronics socket outlet disconnect devices development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m19 5 3-3"></path><path d="m2 22 3-3"></path><path d="M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"></path><path d="M7.5 13.5 10 11"></path><path d="M10.5 16.5 13 14"></path><path d="m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z"></path></svg><span>Unplug</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Upload.html" title="Upload file arrows files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"></path><path d="m17 8-5-5-5 5"></path><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path></svg><span>Upload</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Usb.html" title="Usb universal serial bus controller connector interface devices multimedia home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="10" cy="7" r="1"></circle><circle cx="4" cy="20" r="1"></circle><path d="M4.7 19.3 19 5"></path><path d="m21 3-3 1 2 2Z"></path><path d="M9.26 7.68 5 12l2 5"></path><path d="m10 14 5 2 3.5-3.5"></path><path d="m18 12 1-1 1 1-1 1Z"></path></svg><span>Usb</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserCheck.html" title="UserCheck followed subscribed done todo tick complete task account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 11 2 2 4-4"></path><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle></svg><span>UserCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserCog.html" title="UserCog settings edit cog gear account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 15H6a4 4 0 0 0-4 4v2"></path><path d="m14.305 16.53.923-.382"></path><path d="m15.228 13.852-.923-.383"></path><path d="m16.852 12.228-.383-.923"></path><path d="m16.852 17.772-.383.924"></path><path d="m19.148 12.228.383-.923"></path><path d="m19.53 18.696-.382-.924"></path><path d="m20.772 13.852.924-.383"></path><path d="m20.772 16.148.924.383"></path><circle cx="18" cy="15" r="3"></circle><circle cx="9" cy="7" r="4"></circle></svg><span>UserCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserKey.html" title="UserKey passkey password login authentication authorization roles permissions private public security person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 11v6"></path><path d="M20 13h2"></path><path d="M3 21v-2a4 4 0 0 1 4-4h6a4 4 0 0 1 2.072.578"></path><circle cx="10" cy="7" r="4"></circle><circle cx="20" cy="19" r="2"></circle></svg><span>UserKey</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserLock.html" title="UserLock person lock locked account secure account security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 16v-2a2 2 0 0 0-4 0v2"></path><path d="M9.5 15H7a4 4 0 0 0-4 4v2"></path><circle cx="10" cy="7" r="4"></circle><rect height="5" rx=".899" width="8" x="13" y="16"></rect></svg><span>UserLock</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserMinus.html" title="UserMinus delete remove unfollow unsubscribe account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><line x1="22" x2="16" y1="11" y2="11"></line></svg><span>UserMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserPen.html" title="UserPen person account contact profile edit change account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.5 15H7a4 4 0 0 0-4 4v2"></path><path d="M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path><circle cx="10" cy="7" r="4"></circle></svg><span>UserPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserPlus.html" title="UserPlus new add create follow subscribe account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><line x1="19" x2="19" y1="8" y2="14"></line><line x1="22" x2="16" y1="11" y2="11"></line></svg><span>UserPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundCheck.html" title="UserRoundCheck followed subscribed done todo tick complete task account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 21a8 8 0 0 1 13.292-6"></path><circle cx="10" cy="8" r="5"></circle><path d="m16 19 2 2 4-4"></path></svg><span>UserRoundCheck</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundCog.html" title="UserRoundCog settings edit cog gear account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.305 19.53.923-.382"></path><path d="m15.228 16.852-.923-.383"></path><path d="m16.852 15.228-.383-.923"></path><path d="m16.852 20.772-.383.924"></path><path d="m19.148 15.228.383-.923"></path><path d="m19.53 21.696-.382-.924"></path><path d="M2 21a8 8 0 0 1 10.434-7.62"></path><path d="m20.772 16.852.924-.383"></path><path d="m20.772 19.148.924.383"></path><circle cx="10" cy="8" r="5"></circle><circle cx="18" cy="18" r="3"></circle></svg><span>UserRoundCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundKey.html" title="UserRoundKey passkey password login authentication authorization roles permissions private public security person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 11v6"></path><path d="M19 13h2"></path><path d="M2 21a8 8 0 0 1 12.868-6.349"></path><circle cx="10" cy="8" r="5"></circle><circle cx="19" cy="19" r="2"></circle></svg><span>UserRoundKey</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundMinus.html" title="UserRoundMinus delete remove unfollow unsubscribe account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 21a8 8 0 0 1 13.292-6"></path><circle cx="10" cy="8" r="5"></circle><path d="M22 19h-6"></path></svg><span>UserRoundMinus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundPen.html" title="UserRoundPen person account contact profile edit change account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 21a8 8 0 0 1 10.821-7.487"></path><path d="M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path><circle cx="10" cy="8" r="5"></circle></svg><span>UserRoundPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundPlus.html" title="UserRoundPlus new add create follow subscribe account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 21a8 8 0 0 1 13.292-6"></path><circle cx="10" cy="8" r="5"></circle><path d="M19 16v6"></path><path d="M22 19h-6"></path></svg><span>UserRoundPlus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundSearch.html" title="UserRoundSearch person account contact find scan magnifier magnifying glass lens account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="10" cy="8" r="5"></circle><path d="M2 21a8 8 0 0 1 10.434-7.62"></path><circle cx="18" cy="18" r="3"></circle><path d="m22 22-1.9-1.9"></path></svg><span>UserRoundSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRoundX.html" title="UserRoundX delete remove unfollow unsubscribe unavailable account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 21a8 8 0 0 1 11.873-7"></path><circle cx="10" cy="8" r="5"></circle><path d="m17 17 5 5"></path><path d="m22 17-5 5"></path></svg><span>UserRoundX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserRound.html" title="UserRound person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span>UserRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserSearch.html" title="UserSearch person account contact find scan magnifier magnifying glass lens account social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="10" cy="7" r="4"></circle><path d="M10.3 15H7a4 4 0 0 0-4 4v2"></path><circle cx="17" cy="17" r="3"></circle><path d="m21 21-1.9-1.9"></path></svg><span>UserSearch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserStar.html" title="UserStar person account favorite contact like review rating admin account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"></path><path d="M8 15H7a4 4 0 0 0-4 4v2"></path><circle cx="10" cy="7" r="4"></circle></svg><span>UserStar</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UserX.html" title="UserX delete remove unfollow unsubscribe unavailable account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><line x1="17" x2="22" y1="8" y2="13"></line><line x1="22" x2="17" y1="8" y2="13"></line></svg><span>UserX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.User.html" title="User person account contact account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg><span>User</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UsersRound.html" title="UsersRound group people account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 21a8 8 0 0 0-16 0"></path><circle cx="10" cy="8" r="5"></circle><path d="M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3"></path></svg><span>UsersRound</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Users.html" title="Users group people account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"></path><path d="M16 3.128a4 4 0 0 1 0 7.744"></path><path d="M22 21v-2a4 4 0 0 0-3-3.87"></path><circle cx="9" cy="7" r="4"></circle></svg><span>Users</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UtensilsCrossed.html" title="UtensilsCrossed fork knife cutlery flatware tableware silverware food restaurant meal breakfast dinner supper food-beverage travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"></path><path d="M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"></path><path d="m2.1 21.8 6.4-6.3"></path><path d="m19 5-7 7"></path></svg><span>UtensilsCrossed</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Utensils.html" title="Utensils fork knife cutlery flatware tableware silverware food restaurant meal breakfast dinner supper food-beverage travel navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"></path><path d="M7 2v20"></path><path d="M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"></path></svg><span>Utensils</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.UtilityPole.html" title="UtilityPole electricity energy transmission line telegraph pole power lines phone buildings home sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v20"></path><path d="M2 5h20"></path><path d="M3 3v2"></path><path d="M7 3v2"></path><path d="M17 3v2"></path><path d="M21 3v2"></path><path d="m19 5-7 7-7-7"></path></svg><span>UtilityPole</span></a>
</div>
<h3>V</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.Van.html" title="Van minivan cart wagon truck lorry trailer camper vehicle drive trip journey van transport carriage delivery travel transportation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 6v5a1 1 0 0 0 1 1h6.102a1 1 0 0 1 .712.298l.898.91a1 1 0 0 1 .288.702V17a1 1 0 0 1-1 1h-3"></path><path d="M5 18H3a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h12c1.1 0 2.1.8 2.4 1.8l1.176 4.2"></path><path d="M9 18h5"></path><circle cx="16" cy="18" r="2"></circle><circle cx="7" cy="18" r="2"></circle></svg><span>Van</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Variable.html" title="Variable code coding programming symbol calculate algebra x parentheses parenthesis brackets parameter ( ) development math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 21s-4-3-4-9 4-9 4-9"></path><path d="M16 3s4 3 4 9-4 9-4 9"></path><line x1="15" x2="9" y1="9" y2="15"></line><line x1="9" x2="15" y1="9" y2="15"></line></svg><span>Variable</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Vault.html" title="Vault safe lockbox deposit locker coffer strongbox safety secure storage valuables bank security travel home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><circle cx="7.5" cy="7.5" fill="currentColor" r=".5"></circle><path d="m7.9 7.9 2.7 2.7"></path><circle cx="16.5" cy="7.5" fill="currentColor" r=".5"></circle><path d="m13.4 10.6 2.7-2.7"></path><circle cx="7.5" cy="16.5" fill="currentColor" r=".5"></circle><path d="m7.9 16.1 2.7-2.7"></path><circle cx="16.5" cy="16.5" fill="currentColor" r=".5"></circle><path d="m13.4 13.4 2.7 2.7"></path><circle cx="12" cy="12" r="2"></circle></svg><span>Vault</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VectorSquare.html" title="VectorSquare shape geometry art width height size calculate measure select graphics box shapes math design tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19.5 7a24 24 0 0 1 0 10"></path><path d="M4.5 7a24 24 0 0 0 0 10"></path><path d="M7 19.5a24 24 0 0 0 10 0"></path><path d="M7 4.5a24 24 0 0 1 10 0"></path><rect height="5" rx="1" width="5" x="17" y="17"></rect><rect height="5" rx="1" width="5" x="17" y="2"></rect><rect height="5" rx="1" width="5" x="2" y="17"></rect><rect height="5" rx="1" width="5" x="2" y="2"></rect></svg><span>VectorSquare</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Vegan.html" title="Vegan vegetarian fruitarian herbivorous animal rights diet food-beverage sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8q6 0 6-6-6 0-6 6"></path><path d="M17.41 3.59a10 10 0 1 0 3 3"></path><path d="M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14"></path></svg><span>Vegan</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VenetianMask.html" title="VenetianMask mask masquerade impersonate secret incognito account gaming"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 11c-1.5 0-2.5.5-3 2"></path><path d="M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z"></path><path d="M6 11c1.5 0 2.5.5 3 2"></path></svg><span>VenetianMask</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VenusAndMars.html" title="VenusAndMars gender sex intersex androgynous hermaphrodite medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 20h4"></path><path d="M12 16v6"></path><path d="M17 2h4v4"></path><path d="m21 2-5.46 5.46"></path><circle cx="12" cy="11" r="5"></circle></svg><span>VenusAndMars</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Venus.html" title="Venus gender sex female feminine woman girl medical"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 15v7"></path><path d="M9 19h6"></path><circle cx="12" cy="9" r="6"></circle></svg><span>Venus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VibrateOff.html" title="VibrateOff smartphone notification rumble haptic feedback notifications screen devices connectivity account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 8 2 2-2 2 2 2-2 2"></path><path d="m22 8-2 2 2 2-2 2 2 2"></path><path d="M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"></path><path d="M16 10.34V6c0-.55-.45-1-1-1h-4.34"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>VibrateOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Vibrate.html" title="Vibrate smartphone notification rumble haptic feedback screen devices connectivity account notifications"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 8 2 2-2 2 2 2-2 2"></path><path d="m22 8-2 2 2 2-2 2 2 2"></path><rect height="14" rx="1" width="8" x="8" y="5"></rect></svg><span>Vibrate</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VideoOff.html" title="VideoOff camera movie film devices communication connectivity photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196"></path><path d="M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"></path><path d="m2 2 20 20"></path></svg><span>VideoOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Video.html" title="Video camera movie film recording motion picture camcorder reel devices communication connectivity photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"></path><rect height="12" rx="2" width="14" x="2" y="6"></rect></svg><span>Video</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Videotape.html" title="Videotape vhs movie film recording motion picture showreel cassette devices communication connectivity photography files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="16" rx="2" width="20" x="2" y="4"></rect><path d="M2 8h20"></path><circle cx="8" cy="14" r="2"></circle><path d="M8 12h8"></path><circle cx="16" cy="14" r="2"></circle></svg><span>Videotape</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.View.html" title="View eye look design photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"></path><path d="M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"></path><circle cx="12" cy="12" r="1"></circle><path d="M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"></path></svg><span>View</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Voicemail.html" title="Voicemail phone cassette tape reel recording audio connectivity devices social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="12" r="4"></circle><circle cx="18" cy="12" r="4"></circle><line x1="6" x2="18" y1="16" y2="16"></line></svg><span>Voicemail</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Volleyball.html" title="Volleyball beach sand net holiday vacation summer soccer football futbol kick pitch goal score bounce leather wool yarn knitting sewing thread embroidery textile sports gaming travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.1 7.1a16.55 16.55 0 0 1 10.9 4"></path><path d="M12 12a12.6 12.6 0 0 1-8.7 5"></path><path d="M16.8 13.6a16.55 16.55 0 0 1-9 7.5"></path><path d="M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10"></path><path d="M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5"></path><circle cx="12" cy="12" r="10"></circle></svg><span>Volleyball</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Volume1.html" title="Volume1 music sound speaker connectivity communication multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"></path><path d="M16 9a5 5 0 0 1 0 6"></path></svg><span>Volume1</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Volume2.html" title="Volume2 music sound speaker connectivity communication multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"></path><path d="M16 9a5 5 0 0 1 0 6"></path><path d="M19.364 18.364a9 9 0 0 0 0-12.728"></path></svg><span>Volume2</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VolumeOff.html" title="VolumeOff music sound mute speaker connectivity communication multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 9a5 5 0 0 1 .95 2.293"></path><path d="M19.364 5.636a9 9 0 0 1 1.889 9.96"></path><path d="m2 2 20 20"></path><path d="m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11"></path><path d="M9.828 4.172A.686.686 0 0 1 11 4.657v.686"></path></svg><span>VolumeOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.VolumeX.html" title="VolumeX music sound mute speaker connectivity communication multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"></path><line x1="22" x2="16" y1="9" y2="15"></line><line x1="16" x2="22" y1="9" y2="15"></line></svg><span>VolumeX</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Volume.html" title="Volume music sound mute speaker connectivity communication multimedia"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"></path></svg><span>Volume</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Vote.html" title="Vote vote poll ballot political social check tick social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 12 2 2 4-4"></path><path d="M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z"></path><path d="M22 19H2"></path></svg><span>Vote</span></a>
</div>
<h3>W</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.WalletCards.html" title="WalletCards money finance pocket credit purchase payment shopping retail consumer cc account finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="18" rx="2" width="18" x="3" y="3"></rect><path d="M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"></path><path d="M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21"></path></svg><span>WalletCards</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WalletMinimal.html" title="WalletMinimal finance pocket account finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 14h.01"></path><path d="M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14"></path></svg><span>WalletMinimal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wallet.html" title="Wallet money finance pocket account finance"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"></path><path d="M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"></path></svg><span>Wallet</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wallpaper.html" title="Wallpaper background texture image art design visual decor pattern screen cover lock screen account devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 17v4"></path><path d="M8 21h8"></path><path d="m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15"></path><circle cx="8" cy="9" r="2"></circle><rect height="14" rx="2" width="20" x="2" y="3"></rect></svg><span>Wallpaper</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WandSparkles.html" title="WandSparkles magic wizard magician design gaming cursors photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"></path><path d="m14 7 3 3"></path><path d="M5 6v4"></path><path d="M19 14v4"></path><path d="M10 2v2"></path><path d="M7 8H3"></path><path d="M21 16h-4"></path><path d="M11 3H9"></path></svg><span>WandSparkles</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wand.html" title="Wand magic selection design gaming cursors photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 4V2"></path><path d="M15 16v-2"></path><path d="M8 9h2"></path><path d="M20 9h2"></path><path d="M17.8 11.8 19 13"></path><path d="M15 9h.01"></path><path d="M17.8 6.2 19 5"></path><path d="m3 21 9-9"></path><path d="M12.2 6.2 11 5"></path></svg><span>Wand</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Warehouse.html" title="Warehouse storage storehouse depot depository repository stockroom logistics building buildings navigation"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11"></path><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z"></path><path d="M6 13h12"></path><path d="M6 17h12"></path></svg><span>Warehouse</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WashingMachine.html" title="WashingMachine tumble dryer amenities electronics cycle clothes rinse spin drum home devices travel"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 6h3"></path><path d="M17 6h.01"></path><rect height="20" rx="2" width="18" x="3" y="2"></rect><circle cx="12" cy="13" r="5"></circle><path d="M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5"></path></svg><span>WashingMachine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Watch.html" title="Watch clock time time"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10v2.2l1.6 1"></path><path d="m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"></path><path d="m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"></path><circle cx="12" cy="12" r="6"></circle></svg><span>Watch</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WavesArrowDown.html" title="WavesArrowDown water sea level sound hertz wavelength vibrate low tide ocean rising down falling weather sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 10L12 2"></path><path d="M16 6L12 10L8 6"></path><path d="M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15"></path><path d="M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21"></path></svg><span>WavesArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WavesArrowUp.html" title="WavesArrowUp water sea level sound hertz wavelength vibrate high tide ocean rising weather sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v8"></path><path d="M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"></path><path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"></path><path d="m8 6 4-4 4 4"></path></svg><span>WavesArrowUp</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WavesHorizontal.html" title="WavesHorizontal water sea sound hertz wavelength vibrate ocean swimming frequency weather navigation multimedia sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12q2.5 2 5 0t5 0 5 0 5 0"></path><path d="M2 19q2.5 2 5 0t5 0 5 0 5 0"></path><path d="M2 5q2.5 2 5 0t5 0 5 0 5 0"></path></svg><span>WavesHorizontal</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WavesLadder.html" title="WavesLadder swimming water pool lifeguard ocean 🌊 🏊‍♂️ 🏊‍♀️ 🏊 🥽 sports home"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 5a2 2 0 0 0-2 2v11"></path><path d="M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"></path><path d="M7 13h10"></path><path d="M7 9h10"></path><path d="M9 5a2 2 0 0 0-2 2v11"></path></svg><span>WavesLadder</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WavesVertical.html" title="WavesVertical steam warmth temperature burn hot boiling heat smoke vapor smell aroma sauna weather sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2q2 2.5 0 5t0 5 0 5 0 5"></path><path d="M19 2q2 2.5 0 5t0 5 0 5 0 5"></path><path d="M5 2q2 2.5 0 5t0 5 0 5 0 5"></path></svg><span>WavesVertical</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Waypoints.html" title="Waypoints indirection vpn virtual private network proxy connections bounce reroute path journey planner stops stations shared spread viral security account navigation development social"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m10.586 5.414-5.172 5.172"></path><path d="m18.586 13.414-5.172 5.172"></path><path d="M6 12h12"></path><circle cx="12" cy="20" r="2"></circle><circle cx="12" cy="4" r="2"></circle><circle cx="20" cy="12" r="2"></circle><circle cx="4" cy="12" r="2"></circle></svg><span>Waypoints</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Webcam.html" title="Webcam camera security connectivity devices communication"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="10" r="8"></circle><circle cx="12" cy="10" r="3"></circle><path d="M7 22h10"></path><path d="M12 22v-4"></path></svg><span>Webcam</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WebhookOff.html" title="WebhookOff push api interface callback development social account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15"></path><path d="M9 3.4a4 4 0 0 1 6.52.66"></path><path d="m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05"></path><path d="M20.3 20.3a4 4 0 0 1-2.3.7"></path><path d="M18.6 13a4 4 0 0 1 3.357 3.414"></path><path d="m12 6 .6 1"></path><path d="m2 2 20 20"></path></svg><span>WebhookOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Webhook.html" title="Webhook push api interface callback development social account"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"></path><path d="m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"></path><path d="m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"></path></svg><span>Webhook</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WeightTilde.html" title="WeightTilde measure scale estimate load balance size measurement quantity mass math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6.5 8a2 2 0 0 0-1.906 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8z"></path><path d="M7.999 15a2.5 2.5 0 0 1 4 0 2.5 2.5 0 0 0 4 0"></path><circle cx="12" cy="5" r="3"></circle></svg><span>WeightTilde</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Weight.html" title="Weight mass heavy lead metal measure geometry scales balance math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="5" r="3"></circle><path d="M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z"></path></svg><span>Weight</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WheatOff.html" title="WheatOff corn cereal grain gluten free allergy intolerance diet food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 22 10-10"></path><path d="m16 8-1.17 1.17"></path><path d="M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"></path><path d="m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"></path><path d="M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"></path><path d="M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"></path><path d="M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"></path><path d="m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"></path><path d="M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>WheatOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wheat.html" title="Wheat corn cereal grain gluten food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 22 16 8"></path><path d="M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"></path><path d="M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"></path><path d="M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"></path><path d="M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"></path><path d="M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"></path><path d="M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"></path><path d="M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"></path></svg><span>Wheat</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WholeWord.html" title="WholeWord text selection letters characters font typography text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="7" cy="12" r="3"></circle><path d="M10 9v6"></path><circle cx="17" cy="12" r="3"></circle><path d="M14 7v8"></path><path d="M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"></path></svg><span>WholeWord</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiCog.html" title="WifiCog connection signal wireless directory settings control preferences cog edit gear connectivity devices files"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m14.305 19.53.923-.382"></path><path d="m15.228 16.852-.923-.383"></path><path d="m16.852 15.228-.383-.923"></path><path d="m16.852 20.772-.383.924"></path><path d="m19.148 15.228.383-.923"></path><path d="m19.53 21.696-.382-.924"></path><path d="M2 7.82a15 15 0 0 1 20 0"></path><path d="m20.772 16.852.924-.383"></path><path d="m20.772 19.148.924.383"></path><path d="M5 11.858a10 10 0 0 1 11.5-1.785"></path><path d="M8.5 15.429a5 5 0 0 1 2.413-1.31"></path><circle cx="18" cy="18" r="3"></circle></svg><span>WifiCog</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiHigh.html" title="WifiHigh connection signal wireless connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h.01"></path><path d="M5 12.859a10 10 0 0 1 14 0"></path><path d="M8.5 16.429a5 5 0 0 1 7 0"></path></svg><span>WifiHigh</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiLow.html" title="WifiLow connection signal wireless connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h.01"></path><path d="M8.5 16.429a5 5 0 0 1 7 0"></path></svg><span>WifiLow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiOff.html" title="WifiOff disabled connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h.01"></path><path d="M8.5 16.429a5 5 0 0 1 7 0"></path><path d="M5 12.859a10 10 0 0 1 5.17-2.69"></path><path d="M19 12.859a10 10 0 0 0-2.007-1.523"></path><path d="M2 8.82a15 15 0 0 1 4.177-2.643"></path><path d="M22 8.82a15 15 0 0 0-11.288-3.764"></path><path d="m2 2 20 20"></path></svg><span>WifiOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiPen.html" title="WifiPen edit wifi pen change network connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 8.82a15 15 0 0 1 20 0"></path><path d="M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"></path><path d="M5 12.859a10 10 0 0 1 10.5-2.222"></path><path d="M8.5 16.429a5 5 0 0 1 3-1.406"></path></svg><span>WifiPen</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiSync.html" title="WifiSync connection signal wireless synchronize reconnect reset restart connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5"></path><path d="M11.965 14.105h4"></path><path d="M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5"></path><path d="M2 8.82a15 15 0 0 1 20 0"></path><path d="M21.965 22.105v-4"></path><path d="M5 12.86a10 10 0 0 1 3-2.032"></path><path d="M8.5 16.429h.01"></path></svg><span>WifiSync</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WifiZero.html" title="WifiZero connection signal wireless connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h.01"></path></svg><span>WifiZero</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wifi.html" title="Wifi connection signal wireless connectivity devices"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h.01"></path><path d="M2 8.82a15 15 0 0 1 20 0"></path><path d="M5 12.859a10 10 0 0 1 14 0"></path><path d="M8.5 16.429a5 5 0 0 1 7 0"></path></svg><span>Wifi</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WindArrowDown.html" title="WindArrowDown weather air pressure blow weather sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 2v8"></path><path d="M12.8 21.6A2 2 0 1 0 14 18H2"></path><path d="M17.5 10a2.5 2.5 0 1 1 2 4H2"></path><path d="m6 6 4 4 4-4"></path></svg><span>WindArrowDown</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wind.html" title="Wind weather air blow weather sustainability"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.8 19.6A2 2 0 1 0 14 16H2"></path><path d="M17.5 8a2.5 2.5 0 1 1 2 4H2"></path><path d="M9.8 4.4A2 2 0 1 1 11 8H2"></path></svg><span>Wind</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.WineOff.html" title="WineOff alcohol beverage drink glass alcohol free abstinence abstaining teetotalism allergy intolerance food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 22h8"></path><path d="M7 10h3m7 0h-1.343"></path><path d="M12 15v7"></path><path d="M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"></path><line x1="2" x2="22" y1="2" y2="22"></line></svg><span>WineOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wine.html" title="Wine alcohol beverage bar drink glass sommelier vineyard winery food-beverage"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 22h8"></path><path d="M7 10h10"></path><path d="M12 15v7"></path><path d="M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"></path></svg><span>Wine</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Workflow.html" title="Workflow action continuous integration ci automation devops network node connection development"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect height="8" rx="2" width="8" x="3" y="3"></rect><path d="M7 11v4a2 2 0 0 0 2 2h4"></path><rect height="8" rx="2" width="8" x="13" y="13"></rect></svg><span>Workflow</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Worm.html" title="Worm invertebrate grub larva snake crawl wiggle slither pest control computer virus malware animals security"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m19 12-1.5 3"></path><path d="M19.63 18.81 22 20"></path><path d="M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z"></path></svg><span>Worm</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Wrench.html" title="Wrench account settings spanner diy toolbox build construction account development tools"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"></path></svg><span>Wrench</span></a>
</div>
<h3>X</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.XLineTop.html" title="XLineTop line top arrow navigation up pointer direction vector symbol cancel close delete remove times clear math multiply multiplication mean median average x̄ notifications math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 4H6"></path><path d="M18 8 6 20"></path><path d="m6 8 12 12"></path></svg><span>XLineTop</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.X.html" title="X cancel close cross delete ex remove times clear math multiply multiplication notifications math"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 6 6 18"></path><path d="m6 6 12 12"></path></svg><span>X</span></a>
</div>
<h3>Z</h3>
<div class="dioxus-icons-static-grid">
<a class="dioxus-icons-static-cell" href="lucide/fn.ZapOff.html" title="ZapOff flash camera lightning electricity energy power connectivity devices photography weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317"></path><path d="M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773"></path><path d="M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643"></path><path d="m2 2 20 20"></path></svg><span>ZapOff</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.Zap.html" title="Zap flash camera lightning electricity energy power quick connectivity devices photography weather"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"></path></svg><span>Zap</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacAquarius.html" title="ZodiacAquarius water bearer waves innovation air future astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m2 10 2.456-3.684a.7.7 0 0 1 1.106-.013l2.39 3.413a.7.7 0 0 0 1.096-.001l2.402-3.432a.7.7 0 0 1 1.098 0l2.402 3.432a.7.7 0 0 0 1.098 0l2.389-3.413a.7.7 0 0 1 1.106.013L22 10"></path><path d="m2 18.002 2.456-3.684a.7.7 0 0 1 1.106-.013l2.39 3.413a.7.7 0 0 0 1.097 0l2.402-3.432a.7.7 0 0 1 1.098 0l2.402 3.432a.7.7 0 0 0 1.098 0l2.389-3.413a.7.7 0 0 1 1.106.013L22 18.002"></path></svg><span>ZodiacAquarius</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacAries.html" title="ZodiacAries ram horns fire energy initiative astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7.5a4.5 4.5 0 1 1 5 4.5"></path><path d="M7 12a4.5 4.5 0 1 1 5-4.5V21"></path></svg><span>ZodiacAries</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacCancer.html" title="ZodiacCancer crab shell protection water intuition astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 14.5A9 6.5 0 0 1 5.5 19"></path><path d="M3 9.5A9 6.5 0 0 1 18.5 5"></path><circle cx="17.5" cy="14.5" r="3.5"></circle><circle cx="6.5" cy="9.5" r="3.5"></circle></svg><span>ZodiacCancer</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacCapricorn.html" title="ZodiacCapricorn goat mountain ambition earth discipline astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 21a3 3 0 0 0 3-3V6.5a1 1 0 0 0-7 0"></path><path d="M7 19V6a3 3 0 0 0-3-3h0"></path><circle cx="17" cy="17" r="3"></circle></svg><span>ZodiacCapricorn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacGemini.html" title="ZodiacGemini twins duality communication air adaptability astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4.525v14.948"></path><path d="M20 3A17 17 0 0 1 4 3"></path><path d="M4 21a17 17 0 0 1 16 0"></path><path d="M8 4.525v14.948"></path></svg><span>ZodiacGemini</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacLeo.html" title="ZodiacLeo lion crown leadership fire confidence astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 16c0-4-3-4.5-3-8a5 5 0 0 1 10 0c0 3.466-3 6.196-3 10a3 3 0 0 0 6 0"></path><circle cx="7" cy="16" r="3"></circle></svg><span>ZodiacLeo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacLibra.html" title="ZodiacLibra scales balance justice air harmony astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 16h6.857c.162-.012.19-.323.038-.38a6 6 0 1 1 4.212 0c-.153.057-.125.368.038.38H21"></path><path d="M3 20h18"></path></svg><span>ZodiacLibra</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacOphiuchus.html" title="ZodiacOphiuchus serpent snake holder healing knowledge astronomy astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 10A6.06 6.06 0 0 1 12 10 A6.06 6.06 0 0 0 21 10"></path><path d="M6 3v12a6 6 0 0 0 12 0V3"></path></svg><span>ZodiacOphiuchus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacPisces.html" title="ZodiacPisces fish duality water dreams empathy astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 21a15 15 0 0 1 0-18"></path><path d="M20 12H4"></path><path d="M5 3a15 15 0 0 1 0 18"></path></svg><span>ZodiacPisces</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacSagittarius.html" title="ZodiacSagittarius archer arrow exploration fire philosophy astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h6v6"></path><path d="M21 3 3 21"></path><path d="m9 9 6 6"></path></svg><span>ZodiacSagittarius</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacScorpio.html" title="ZodiacScorpio scorpion stinger intensity water transformation astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 19V5.5a1 1 0 0 1 5 0V17a2 2 0 0 0 2 2h5l-3-3"></path><path d="m22 19-3 3"></path><path d="M5 19V5.5a1 1 0 0 1 5 0"></path><path d="M5 5.5A2.5 2.5 0 0 0 2.5 3"></path></svg><span>ZodiacScorpio</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacTaurus.html" title="ZodiacTaurus bull strength stability earth endurance astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="15" r="6"></circle><path d="M18 3A6 6 0 0 1 6 3"></path></svg><span>ZodiacTaurus</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZodiacVirgo.html" title="ZodiacVirgo virgin maiden harvest precision earth analysis astrology star sign horoscope constellation celestial social emoji"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5.5a1 1 0 0 1 5 0V16a5 5 0 0 0 5 5"></path><path d="M16 11.5a1 1 0 0 1 5 0V16a5 5 0 0 1-5 5"></path><path d="M6 19V6a3 3 0 0 0-3-3h0"></path><path d="M6 5.5a1 1 0 0 1 5 0V19"></path></svg><span>ZodiacVirgo</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZoomIn.html" title="ZoomIn magnifying glass plus accessibility layout design text photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" x2="16.65" y1="21" y2="16.65"></line><line x1="11" x2="11" y1="8" y2="14"></line><line x1="8" x2="14" y1="11" y2="11"></line></svg><span>ZoomIn</span></a>
<a class="dioxus-icons-static-cell" href="lucide/fn.ZoomOut.html" title="ZoomOut magnifying glass plus accessibility layout design text photography"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" x2="16.65" y1="21" y2="16.65"></line><line x1="8" x2="14" y1="11" y2="11"></line></svg><span>ZoomOut</span></a>
</div>
</section>