@lukso/web-components 1.172.17 → 1.172.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/chunks/index-BSaCYACP.js +38 -0
  2. package/dist/chunks/{index-DIHXzSqi.js → index-BdDs1GTr.js} +1 -1
  3. package/dist/chunks/{index-Chs3AjPK.js → index-BptDRJ4b.js} +3 -3
  4. package/dist/chunks/{index-DsmwLJjR.js → index-DNzK6-9T.js} +1 -1
  5. package/dist/chunks/{index-y7UFhQ9u.js → index-DfEZ5Urq.js} +3 -3
  6. package/dist/chunks/index-DvBRl_q4.js +41 -0
  7. package/dist/components/index.cjs +2 -2
  8. package/dist/components/index.js +2 -2
  9. package/dist/components/lukso-card/index.cjs +7 -7
  10. package/dist/components/lukso-card/index.js +7 -7
  11. package/dist/components/lukso-checkbox/index.cjs +1 -2
  12. package/dist/components/lukso-checkbox/index.js +1 -2
  13. package/dist/components/lukso-color-picker/index.cjs +2 -2
  14. package/dist/components/lukso-color-picker/index.js +2 -2
  15. package/dist/components/lukso-dropdown/index.cjs +1 -1
  16. package/dist/components/lukso-dropdown/index.js +1 -1
  17. package/dist/components/lukso-icon/index.cjs +252 -252
  18. package/dist/components/lukso-icon/index.js +252 -252
  19. package/dist/components/lukso-image/index.cjs +2 -2
  20. package/dist/components/lukso-image/index.js +2 -2
  21. package/dist/components/lukso-progress/index.cjs +3 -3
  22. package/dist/components/lukso-progress/index.js +3 -3
  23. package/dist/components/lukso-search/index.cjs +2 -2
  24. package/dist/components/lukso-search/index.js +2 -2
  25. package/dist/components/lukso-select/index.cjs +1 -1
  26. package/dist/components/lukso-select/index.js +1 -1
  27. package/dist/components/lukso-switch/index.cjs +3 -3
  28. package/dist/components/lukso-switch/index.js +3 -3
  29. package/dist/components/lukso-tag/index.cjs +1 -1
  30. package/dist/components/lukso-tag/index.js +1 -1
  31. package/dist/components/lukso-terms/index.cjs +1 -2
  32. package/dist/components/lukso-terms/index.js +1 -2
  33. package/dist/components/lukso-username/index.cjs +3 -3
  34. package/dist/components/lukso-username/index.js +3 -3
  35. package/dist/components/lukso-wizard/index.cjs +2 -15
  36. package/dist/components/lukso-wizard/index.js +2 -15
  37. package/dist/index.cjs +2 -2
  38. package/dist/index.js +2 -2
  39. package/dist/vite.full.config.d.ts.map +1 -1
  40. package/package.json +1 -1
  41. package/dist/chunks/directive-CY66atYi.js +0 -22
  42. package/dist/chunks/directive-DUHAbymA.js +0 -15
  43. package/dist/chunks/index-BOEPqh0N.js +0 -20
  44. package/dist/chunks/index-C5S-_QDF.js +0 -18
  45. package/dist/chunks/index-CqZm8OfY.js +0 -22
  46. package/dist/chunks/index-DvLZWpq9.js +0 -24
  47. package/dist/chunks/style-map-AEeBQfPb.js +0 -11
  48. package/dist/chunks/style-map-auscxO0L.js +0 -9
@@ -2,7 +2,7 @@ import { html } from 'lit';
2
2
  import { property } from 'lit/decorators.js';
3
3
  import { unsafeHTML } from 'lit/directives/unsafe-html.js';
4
4
  import { a as TailwindStyledElement, s as safeCustomElement } from '../../chunks/index-DluTRl1F.js';
5
- import { o } from '../../chunks/style-map-auscxO0L.js';
5
+ import { styleMap } from 'lit/directives/style-map.js';
6
6
 
7
7
  const style = ":host {\n position: relative;\n display: inline-flex;\n line-height: 0;\n}\n:host svg {\n display: block !important;\n}";
8
8
 
@@ -13,7 +13,7 @@ const addPhoto = (options) => {
13
13
  viewBox="0 0 24 24"
14
14
  fill="none"
15
15
  xmlns="http://www.w3.org/2000/svg"
16
- style=${o({
16
+ style=${styleMap({
17
17
  width: `${options.width}px`,
18
18
  height: `${options.height}px`
19
19
  })}
@@ -55,7 +55,7 @@ const arrowDownLg = (options) => {
55
55
  viewBox="0 0 24 24"
56
56
  fill="none"
57
57
  xmlns="http://www.w3.org/2000/svg"
58
- style=${o({
58
+ style=${styleMap({
59
59
  width: `${options.width}px`,
60
60
  height: `${options.height}px`
61
61
  })}
@@ -77,7 +77,7 @@ const arrowDownSm = (options) => {
77
77
  viewBox="0 0 24 24"
78
78
  fill="none"
79
79
  xmlns="http://www.w3.org/2000/svg"
80
- style=${o({
80
+ style=${styleMap({
81
81
  width: `${options.width}px`,
82
82
  height: `${options.height}px`
83
83
  })}
@@ -99,7 +99,7 @@ const arrowLeftLg = (options) => {
99
99
  viewBox="0 0 24 24"
100
100
  fill="none"
101
101
  xmlns="http://www.w3.org/2000/svg"
102
- style=${o({
102
+ style=${styleMap({
103
103
  width: `${options.width}px`,
104
104
  height: `${options.height}px`
105
105
  })}
@@ -121,7 +121,7 @@ const arrowLeftSm = (options) => {
121
121
  viewBox="0 0 24 24"
122
122
  fill="none"
123
123
  xmlns="http://www.w3.org/2000/svg"
124
- style=${o({
124
+ style=${styleMap({
125
125
  width: `${options.width}px`,
126
126
  height: `${options.height}px`
127
127
  })}
@@ -143,7 +143,7 @@ const arrowRightLg = (options) => {
143
143
  viewBox="0 0 24 24"
144
144
  fill="none"
145
145
  xmlns="http://www.w3.org/2000/svg"
146
- style=${o({
146
+ style=${styleMap({
147
147
  width: `${options.width}px`,
148
148
  height: `${options.height}px`
149
149
  })}
@@ -165,7 +165,7 @@ const arrowRightSm = (options) => {
165
165
  viewBox="0 0 24 24"
166
166
  fill="none"
167
167
  xmlns="http://www.w3.org/2000/svg"
168
- style=${o({
168
+ style=${styleMap({
169
169
  width: `${options.width}px`,
170
170
  height: `${options.height}px`
171
171
  })}
@@ -187,7 +187,7 @@ const arrowUpLg = (options) => {
187
187
  viewBox="0 0 24 24"
188
188
  fill="none"
189
189
  xmlns="http://www.w3.org/2000/svg"
190
- style=${o({
190
+ style=${styleMap({
191
191
  width: `${options.width}px`,
192
192
  height: `${options.height}px`
193
193
  })}
@@ -209,7 +209,7 @@ const arrowUpSm = (options) => {
209
209
  viewBox="0 0 24 24"
210
210
  fill="none"
211
211
  xmlns="http://www.w3.org/2000/svg"
212
- style=${o({
212
+ style=${styleMap({
213
213
  width: `${options.width}px`,
214
214
  height: `${options.height}px`
215
215
  })}
@@ -231,7 +231,7 @@ const barbellOutline = (options) => {
231
231
  viewBox="0 0 24 24"
232
232
  fill="none"
233
233
  xmlns="http://www.w3.org/2000/svg"
234
- style=${o({
234
+ style=${styleMap({
235
235
  width: `${options.width}px`,
236
236
  height: `${options.height}px`
237
237
  })}
@@ -281,7 +281,7 @@ const bulbOutline = (options) => {
281
281
  viewBox="0 0 24 24"
282
282
  fill="none"
283
283
  xmlns="http://www.w3.org/2000/svg"
284
- style=${o({
284
+ style=${styleMap({
285
285
  width: `${options.width}px`,
286
286
  height: `${options.height}px`
287
287
  })}
@@ -331,7 +331,7 @@ const camera = (options) => {
331
331
  viewBox="0 0 24 24"
332
332
  fill="none"
333
333
  xmlns="http://www.w3.org/2000/svg"
334
- style=${o({
334
+ style=${styleMap({
335
335
  width: `${options.width}px`,
336
336
  height: `${options.height}px`
337
337
  })}
@@ -367,7 +367,7 @@ const clipboard = (options) => {
367
367
  viewBox="0 0 24 24"
368
368
  fill="none"
369
369
  xmlns="http://www.w3.org/2000/svg"
370
- style=${o({
370
+ style=${styleMap({
371
371
  width: `${options.width}px`,
372
372
  height: `${options.height}px`
373
373
  })}
@@ -422,7 +422,7 @@ const clock = (options) => {
422
422
  viewBox="0 0 24 24"
423
423
  fill="none"
424
424
  xmlns="http://www.w3.org/2000/svg"
425
- style=${o({
425
+ style=${styleMap({
426
426
  width: `${options.width}px`,
427
427
  height: `${options.height}px`
428
428
  })}
@@ -449,7 +449,7 @@ const closeLg = (options) => {
449
449
  viewBox="0 0 24 24"
450
450
  fill="none"
451
451
  xmlns="http://www.w3.org/2000/svg"
452
- style=${o({
452
+ style=${styleMap({
453
453
  width: `${options.width}px`,
454
454
  height: `${options.height}px`
455
455
  })}
@@ -478,7 +478,7 @@ const closeSm = (options) => {
478
478
  viewBox="0 0 24 24"
479
479
  fill="none"
480
480
  xmlns="http://www.w3.org/2000/svg"
481
- style=${o({
481
+ style=${styleMap({
482
482
  width: `${options.width}px`,
483
483
  height: `${options.height}px`
484
484
  })}
@@ -507,7 +507,7 @@ const cloud = (options) => {
507
507
  viewBox="0 0 24 24"
508
508
  fill="none"
509
509
  xmlns="http://www.w3.org/2000/svg"
510
- style=${o({
510
+ style=${styleMap({
511
511
  width: `${options.width}px`,
512
512
  height: `${options.height}px`
513
513
  })}
@@ -528,7 +528,7 @@ const compassOutline = (options) => {
528
528
  viewBox="0 0 24 24"
529
529
  fill="none"
530
530
  xmlns="http://www.w3.org/2000/svg"
531
- style=${o({
531
+ style=${styleMap({
532
532
  width: `${options.width}px`,
533
533
  height: `${options.height}px`
534
534
  })}
@@ -553,7 +553,7 @@ const completeFilled = (options) => {
553
553
  viewBox="0 0 24 24"
554
554
  fill="none"
555
555
  xmlns="http://www.w3.org/2000/svg"
556
- style=${o({
556
+ style=${styleMap({
557
557
  width: `${options.width}px`,
558
558
  height: `${options.height}px`
559
559
  })}
@@ -581,7 +581,7 @@ const completeOutline = (options) => {
581
581
  viewBox="0 0 24 24"
582
582
  fill="none"
583
583
  xmlns="http://www.w3.org/2000/svg"
584
- style=${o({
584
+ style=${styleMap({
585
585
  width: `${options.width}px`,
586
586
  height: `${options.height}px`
587
587
  })}
@@ -608,7 +608,7 @@ const contractLock = (options) => {
608
608
  viewBox="0 0 24 24"
609
609
  fill="none"
610
610
  xmlns="http://www.w3.org/2000/svg"
611
- style=${o({
611
+ style=${styleMap({
612
612
  width: `${options.width}px`,
613
613
  height: `${options.height}px`
614
614
  })}
@@ -647,7 +647,7 @@ const contractSigned = (options) => {
647
647
  viewBox="0 0 24 24"
648
648
  fill="none"
649
649
  xmlns="http://www.w3.org/2000/svg"
650
- style=${o({
650
+ style=${styleMap({
651
651
  width: `${options.width}px`,
652
652
  height: `${options.height}px`
653
653
  })}
@@ -709,7 +709,7 @@ const connect = (options) => {
709
709
  viewBox="0 0 24 24"
710
710
  fill="none"
711
711
  xmlns="http://www.w3.org/2000/svg"
712
- style=${o({
712
+ style=${styleMap({
713
713
  width: `${options.width}px`,
714
714
  height: `${options.height}px`
715
715
  })}
@@ -738,7 +738,7 @@ const connections = (options) => {
738
738
  viewBox="0 0 24 24"
739
739
  fill="none"
740
740
  xmlns="http://www.w3.org/2000/svg"
741
- style=${o({
741
+ style=${styleMap({
742
742
  width: `${options.width}px`,
743
743
  height: `${options.height}px`
744
744
  })}
@@ -768,7 +768,7 @@ const controller = (options) => {
768
768
  viewBox="0 0 24 24"
769
769
  fill="none"
770
770
  xmlns="http://www.w3.org/2000/svg"
771
- style=${o({
771
+ style=${styleMap({
772
772
  width: `${options.width}px`,
773
773
  height: `${options.height}px`
774
774
  })}
@@ -819,7 +819,7 @@ const copy = (options) => {
819
819
  viewBox="0 0 24 24"
820
820
  fill="none"
821
821
  xmlns="http://www.w3.org/2000/svg"
822
- style=${o({
822
+ style=${styleMap({
823
823
  width: `${options.width}px`,
824
824
  height: `${options.height}px`
825
825
  })}
@@ -846,7 +846,7 @@ const crossOutline = (options) => {
846
846
  viewBox="0 0 24 24"
847
847
  fill="none"
848
848
  xmlns="http://www.w3.org/2000/svg"
849
- style=${o({
849
+ style=${styleMap({
850
850
  width: `${options.width}px`,
851
851
  height: `${options.height}px`
852
852
  })}
@@ -880,7 +880,7 @@ const dots = (options) => {
880
880
  viewBox="0 0 24 24"
881
881
  fill="none"
882
882
  xmlns="http://www.w3.org/2000/svg"
883
- style=${o({
883
+ style=${styleMap({
884
884
  width: `${options.width}px`,
885
885
  height: `${options.height}px`
886
886
  })}
@@ -898,7 +898,7 @@ const edit = (options) => {
898
898
  viewBox="0 0 24 24"
899
899
  fill="none"
900
900
  xmlns="http://www.w3.org/2000/svg"
901
- style=${o({
901
+ style=${styleMap({
902
902
  width: `${options.width}px`,
903
903
  height: `${options.height}px`
904
904
  })}
@@ -924,7 +924,7 @@ const error = (options) => {
924
924
  viewBox="0 0 24 24"
925
925
  fill="none"
926
926
  xmlns="http://www.w3.org/2000/svg"
927
- style=${o({
927
+ style=${styleMap({
928
928
  width: `${options.width}px`,
929
929
  height: `${options.height}px`
930
930
  })}
@@ -951,7 +951,7 @@ const expand = (options) => {
951
951
  viewBox="0 0 24 24"
952
952
  fill="none"
953
953
  xmlns="http://www.w3.org/2000/svg"
954
- style=${o({
954
+ style=${styleMap({
955
955
  width: `${options.width}px`,
956
956
  height: `${options.height}px`
957
957
  })}
@@ -1000,7 +1000,7 @@ const extension = (options) => {
1000
1000
  viewBox="0 0 24 24"
1001
1001
  fill="none"
1002
1002
  xmlns="http://www.w3.org/2000/svg"
1003
- style=${o({
1003
+ style=${styleMap({
1004
1004
  width: `${options.width}px`,
1005
1005
  height: `${options.height}px`
1006
1006
  })}
@@ -1027,7 +1027,7 @@ const eyeHide = (options) => {
1027
1027
  viewBox="0 0 24 24"
1028
1028
  fill="none"
1029
1029
  xmlns="http://www.w3.org/2000/svg"
1030
- style=${o({
1030
+ style=${styleMap({
1031
1031
  width: `${options.width}px`,
1032
1032
  height: `${options.height}px`
1033
1033
  })}
@@ -1070,7 +1070,7 @@ const eyeShow = (options) => {
1070
1070
  viewBox="0 0 24 24"
1071
1071
  fill="none"
1072
1072
  xmlns="http://www.w3.org/2000/svg"
1073
- style=${o({
1073
+ style=${styleMap({
1074
1074
  width: `${options.width}px`,
1075
1075
  height: `${options.height}px`
1076
1076
  })}
@@ -1103,7 +1103,7 @@ const filter = (options) => {
1103
1103
  viewBox="0 0 24 24"
1104
1104
  fill="none"
1105
1105
  xmlns="http://www.w3.org/2000/svg"
1106
- style=${o({
1106
+ style=${styleMap({
1107
1107
  width: `${options.width}px`,
1108
1108
  height: `${options.height}px`
1109
1109
  })}
@@ -1142,7 +1142,7 @@ const fishOutline = (options) => {
1142
1142
  viewBox="0 0 24 24"
1143
1143
  fill="none"
1144
1144
  xmlns="http://www.w3.org/2000/svg"
1145
- style=${o({
1145
+ style=${styleMap({
1146
1146
  width: `${options.width}px`,
1147
1147
  height: `${options.height}px`
1148
1148
  })}
@@ -1174,7 +1174,7 @@ const flip = (options) => {
1174
1174
  viewBox="0 0 24 24"
1175
1175
  fill="none"
1176
1176
  xmlns="http://www.w3.org/2000/svg"
1177
- style=${o({
1177
+ style=${styleMap({
1178
1178
  width: `${options.width}px`,
1179
1179
  height: `${options.height}px`
1180
1180
  })}
@@ -1215,7 +1215,7 @@ const globe = (options) => {
1215
1215
  viewBox="0 0 24 24"
1216
1216
  fill="none"
1217
1217
  xmlns="http://www.w3.org/2000/svg"
1218
- style=${o({
1218
+ style=${styleMap({
1219
1219
  width: `${options.width}px`,
1220
1220
  height: `${options.height}px`
1221
1221
  })}
@@ -1272,7 +1272,7 @@ const hamburger = (options) => {
1272
1272
  viewBox="0 0 24 24"
1273
1273
  fill="none"
1274
1274
  xmlns="http://www.w3.org/2000/svg"
1275
- style=${o({
1275
+ style=${styleMap({
1276
1276
  width: `${options.width}px`,
1277
1277
  height: `${options.height}px`
1278
1278
  })}
@@ -1308,7 +1308,7 @@ const infinite = (options) => {
1308
1308
  viewBox="0 0 24 24"
1309
1309
  fill="none"
1310
1310
  xmlns="http://www.w3.org/2000/svg"
1311
- style=${o({
1311
+ style=${styleMap({
1312
1312
  width: `${options.width}px`,
1313
1313
  height: `${options.height}px`
1314
1314
  })}
@@ -1337,7 +1337,7 @@ const information = (options) => {
1337
1337
  viewBox="0 0 24 24"
1338
1338
  fill="none"
1339
1339
  xmlns="http://www.w3.org/2000/svg"
1340
- style=${o({
1340
+ style=${styleMap({
1341
1341
  width: `${options.width}px`,
1342
1342
  height: `${options.height}px`
1343
1343
  })}
@@ -1371,7 +1371,7 @@ const keyOutline = (options) => {
1371
1371
  viewBox="0 0 24 24"
1372
1372
  fill="none"
1373
1373
  xmlns="http://www.w3.org/2000/svg"
1374
- style=${o({
1374
+ style=${styleMap({
1375
1375
  width: `${options.width}px`,
1376
1376
  height: `${options.height}px`
1377
1377
  })}
@@ -1392,7 +1392,7 @@ const link = (options) => {
1392
1392
  viewBox="0 0 24 24"
1393
1393
  fill="none"
1394
1394
  xmlns="http://www.w3.org/2000/svg"
1395
- style=${o({
1395
+ style=${styleMap({
1396
1396
  width: `${options.width}px`,
1397
1397
  height: `${options.height}px`
1398
1398
  })}
@@ -1421,7 +1421,7 @@ const link1 = (options) => {
1421
1421
  viewBox="0 0 24 24"
1422
1422
  fill="none"
1423
1423
  xmlns="http://www.w3.org/2000/svg"
1424
- style=${o({
1424
+ style=${styleMap({
1425
1425
  width: `${options.width}px`,
1426
1426
  height: `${options.height}px`
1427
1427
  })}
@@ -1456,7 +1456,7 @@ const link2 = (options) => {
1456
1456
  viewBox="0 0 24 24"
1457
1457
  fill="none"
1458
1458
  xmlns="http://www.w3.org/2000/svg"
1459
- style=${o({
1459
+ style=${styleMap({
1460
1460
  width: `${options.width}px`,
1461
1461
  height: `${options.height}px`
1462
1462
  })}
@@ -1498,7 +1498,7 @@ const link3 = (options) => {
1498
1498
  viewBox="0 0 24 24"
1499
1499
  fill="none"
1500
1500
  xmlns="http://www.w3.org/2000/svg"
1501
- style=${o({
1501
+ style=${styleMap({
1502
1502
  width: `${options.width}px`,
1503
1503
  height: `${options.height}px`
1504
1504
  })}
@@ -1526,7 +1526,7 @@ const link4 = (options) => {
1526
1526
  viewBox="0 0 24 24"
1527
1527
  fill="none"
1528
1528
  xmlns="http://www.w3.org/2000/svg"
1529
- style=${o({
1529
+ style=${styleMap({
1530
1530
  width: `${options.width}px`,
1531
1531
  height: `${options.height}px`
1532
1532
  })}
@@ -1574,7 +1574,7 @@ const loading = (options) => {
1574
1574
  viewBox="0 0 24 24"
1575
1575
  fill="none"
1576
1576
  xmlns="http://www.w3.org/2000/svg"
1577
- style=${o({
1577
+ style=${styleMap({
1578
1578
  width: `${options.width}px`,
1579
1579
  height: `${options.height}px`
1580
1580
  })}
@@ -1620,7 +1620,7 @@ const location = (options) => {
1620
1620
  viewBox="0 0 24 24"
1621
1621
  fill="none"
1622
1622
  xmlns="http://www.w3.org/2000/svg"
1623
- style=${o({
1623
+ style=${styleMap({
1624
1624
  width: `${options.width}px`,
1625
1625
  height: `${options.height}px`
1626
1626
  })}
@@ -1649,7 +1649,7 @@ const locked = (options) => {
1649
1649
  viewBox="0 0 24 24"
1650
1650
  fill="none"
1651
1651
  xmlns="http://www.w3.org/2000/svg"
1652
- style=${o({
1652
+ style=${styleMap({
1653
1653
  width: `${options.width}px`,
1654
1654
  height: `${options.height}px`
1655
1655
  })}
@@ -1689,7 +1689,7 @@ const login = (options) => {
1689
1689
  viewBox="0 0 24 24"
1690
1690
  fill="none"
1691
1691
  xmlns="http://www.w3.org/2000/svg"
1692
- style=${o({
1692
+ style=${styleMap({
1693
1693
  width: `${options.width}px`,
1694
1694
  height: `${options.height}px`
1695
1695
  })}
@@ -1724,7 +1724,7 @@ const login2 = (options) => {
1724
1724
  viewBox="0 0 24 24"
1725
1725
  fill="none"
1726
1726
  xmlns="http://www.w3.org/2000/svg"
1727
- style=${o({
1727
+ style=${styleMap({
1728
1728
  width: `${options.width}px`,
1729
1729
  height: `${options.height}px`
1730
1730
  })}
@@ -1775,7 +1775,7 @@ const login3 = (options) => {
1775
1775
  viewBox="0 0 24 24"
1776
1776
  fill="none"
1777
1777
  xmlns="http://www.w3.org/2000/svg"
1778
- style=${o({
1778
+ style=${styleMap({
1779
1779
  width: `${options.width}px`,
1780
1780
  height: `${options.height}px`
1781
1781
  })}
@@ -1824,7 +1824,7 @@ const logoChrome = (options) => {
1824
1824
  viewBox="0 0 24 24"
1825
1825
  fill="none"
1826
1826
  xmlns="http://www.w3.org/2000/svg"
1827
- style=${o({
1827
+ style=${styleMap({
1828
1828
  width: `${options.width}px`,
1829
1829
  height: `${options.height}px`
1830
1830
  })}
@@ -1855,7 +1855,7 @@ const logoBrave = (options) => {
1855
1855
  viewBox="0 0 24 24"
1856
1856
  fill="none"
1857
1857
  xmlns="http://www.w3.org/2000/svg"
1858
- style=${o({
1858
+ style=${styleMap({
1859
1859
  width: `${options.width}px`,
1860
1860
  height: `${options.height}px`
1861
1861
  })}
@@ -1891,7 +1891,7 @@ const logoEdge = (options) => {
1891
1891
  viewBox="0 0 24 24"
1892
1892
  fill="none"
1893
1893
  xmlns="http://www.w3.org/2000/svg"
1894
- style=${o({
1894
+ style=${styleMap({
1895
1895
  width: `${options.width}px`,
1896
1896
  height: `${options.height}px`
1897
1897
  })}
@@ -1918,7 +1918,7 @@ const logoFirefox = (options) => {
1918
1918
  viewBox="0 0 24 24"
1919
1919
  fill="none"
1920
1920
  xmlns="http://www.w3.org/2000/svg"
1921
- style=${o({
1921
+ style=${styleMap({
1922
1922
  width: `${options.width}px`,
1923
1923
  height: `${options.height}px`
1924
1924
  })}
@@ -1937,7 +1937,7 @@ const logoOpera = (options) => {
1937
1937
  viewBox="0 0 24 24"
1938
1938
  fill="none"
1939
1939
  xmlns="http://www.w3.org/2000/svg"
1940
- style=${o({
1940
+ style=${styleMap({
1941
1941
  width: `${options.width}px`,
1942
1942
  height: `${options.height}px`
1943
1943
  })}
@@ -1956,7 +1956,7 @@ const logoSafari = (options) => {
1956
1956
  viewBox="0 0 24 24"
1957
1957
  fill="none"
1958
1958
  xmlns="http://www.w3.org/2000/svg"
1959
- style=${o({
1959
+ style=${styleMap({
1960
1960
  width: `${options.width}px`,
1961
1961
  height: `${options.height}px`
1962
1962
  })}
@@ -2000,7 +2000,7 @@ const mail = (options) => {
2000
2000
  viewBox="0 0 24 24"
2001
2001
  fill="none"
2002
2002
  xmlns="http://www.w3.org/2000/svg"
2003
- style=${o({
2003
+ style=${styleMap({
2004
2004
  width: `${options.width}px`,
2005
2005
  height: `${options.height}px`
2006
2006
  })}
@@ -2029,7 +2029,7 @@ const menu1 = (options) => {
2029
2029
  viewBox="0 0 24 24"
2030
2030
  fill="none"
2031
2031
  xmlns="http://www.w3.org/2000/svg"
2032
- style=${o({
2032
+ style=${styleMap({
2033
2033
  width: `${options.width}px`,
2034
2034
  height: `${options.height}px`
2035
2035
  })}
@@ -2096,7 +2096,7 @@ const menu2 = (options) => {
2096
2096
  viewBox="0 0 24 24"
2097
2097
  fill="none"
2098
2098
  xmlns="http://www.w3.org/2000/svg"
2099
- style=${o({
2099
+ style=${styleMap({
2100
2100
  width: `${options.width}px`,
2101
2101
  height: `${options.height}px`
2102
2102
  })}
@@ -2153,7 +2153,7 @@ const migrate = (options) => {
2153
2153
  viewBox="0 0 24 24"
2154
2154
  fill="none"
2155
2155
  xmlns="http://www.w3.org/2000/svg"
2156
- style=${o({
2156
+ style=${styleMap({
2157
2157
  width: `${options.width}px`,
2158
2158
  height: `${options.height}px`
2159
2159
  })}
@@ -2196,7 +2196,7 @@ const minimize = (options) => {
2196
2196
  viewBox="0 0 24 24"
2197
2197
  fill="none"
2198
2198
  xmlns="http://www.w3.org/2000/svg"
2199
- style=${o({
2199
+ style=${styleMap({
2200
2200
  width: `${options.width}px`,
2201
2201
  height: `${options.height}px`
2202
2202
  })}
@@ -2245,7 +2245,7 @@ const network = (options) => {
2245
2245
  viewBox="0 0 24 24"
2246
2246
  fill="none"
2247
2247
  xmlns="http://www.w3.org/2000/svg"
2248
- style=${o({
2248
+ style=${styleMap({
2249
2249
  width: `${options.width}px`,
2250
2250
  height: `${options.height}px`
2251
2251
  })}
@@ -2290,7 +2290,7 @@ const notifications = (options) => {
2290
2290
  viewBox="0 0 24 24"
2291
2291
  fill="none"
2292
2292
  xmlns="http://www.w3.org/2000/svg"
2293
- style=${o({
2293
+ style=${styleMap({
2294
2294
  width: `${options.width}px`,
2295
2295
  height: `${options.height}px`
2296
2296
  })}
@@ -2319,7 +2319,7 @@ const phonePortraitOutline = (options) => {
2319
2319
  viewBox="0 0 24 24"
2320
2320
  fill="none"
2321
2321
  xmlns="http://www.w3.org/2000/svg"
2322
- style=${o({
2322
+ style=${styleMap({
2323
2323
  width: `${options.width}px`,
2324
2324
  height: `${options.height}px`
2325
2325
  })}
@@ -2348,7 +2348,7 @@ const pin = (options) => {
2348
2348
  viewBox="0 0 24 24"
2349
2349
  fill="none"
2350
2350
  xmlns="http://www.w3.org/2000/svg"
2351
- style=${o({
2351
+ style=${styleMap({
2352
2352
  width: `${options.width}px`,
2353
2353
  height: `${options.height}px`
2354
2354
  })}
@@ -2369,7 +2369,7 @@ const playFilled = (options) => {
2369
2369
  viewBox="0 0 24 24"
2370
2370
  fill="none"
2371
2371
  xmlns="http://www.w3.org/2000/svg"
2372
- style=${o({
2372
+ style=${styleMap({
2373
2373
  width: `${options.width}px`,
2374
2374
  height: `${options.height}px`
2375
2375
  })}
@@ -2388,7 +2388,7 @@ const playOutline = (options) => {
2388
2388
  viewBox="0 0 24 24"
2389
2389
  fill="none"
2390
2390
  xmlns="http://www.w3.org/2000/svg"
2391
- style=${o({
2391
+ style=${styleMap({
2392
2392
  width: `${options.width}px`,
2393
2393
  height: `${options.height}px`
2394
2394
  })}
@@ -2408,7 +2408,7 @@ const plus = (options) => {
2408
2408
  viewBox="0 0 24 24"
2409
2409
  fill="none"
2410
2410
  xmlns="http://www.w3.org/2000/svg"
2411
- style=${o({
2411
+ style=${styleMap({
2412
2412
  width: `${options.width}px`,
2413
2413
  height: `${options.height}px`
2414
2414
  })}
@@ -2437,7 +2437,7 @@ const profileAdd = (options) => {
2437
2437
  viewBox="0 0 24 24"
2438
2438
  fill="none"
2439
2439
  xmlns="http://www.w3.org/2000/svg"
2440
- style=${o({
2440
+ style=${styleMap({
2441
2441
  width: `${options.width}px`,
2442
2442
  height: `${options.height}px`
2443
2443
  })}
@@ -2476,7 +2476,7 @@ const profileExport = (options) => {
2476
2476
  viewBox="0 0 24 24"
2477
2477
  fill="none"
2478
2478
  xmlns="http://www.w3.org/2000/svg"
2479
- style=${o({
2479
+ style=${styleMap({
2480
2480
  width: `${options.width}px`,
2481
2481
  height: `${options.height}px`
2482
2482
  })}
@@ -2514,7 +2514,7 @@ const profileImport = (options) => {
2514
2514
  viewBox="0 0 24 24"
2515
2515
  fill="none"
2516
2516
  xmlns="http://www.w3.org/2000/svg"
2517
- style=${o({
2517
+ style=${styleMap({
2518
2518
  width: `${options.width}px`,
2519
2519
  height: `${options.height}px`
2520
2520
  })}
@@ -2552,7 +2552,7 @@ const profileRecovery = (options) => {
2552
2552
  viewBox="0 0 24 24"
2553
2553
  fill="none"
2554
2554
  xmlns="http://www.w3.org/2000/svg"
2555
- style=${o({
2555
+ style=${styleMap({
2556
2556
  width: `${options.width}px`,
2557
2557
  height: `${options.height}px`
2558
2558
  })}
@@ -2603,7 +2603,7 @@ const profileRecovery2 = (options) => {
2603
2603
  viewBox="0 0 24 24"
2604
2604
  fill="none"
2605
2605
  xmlns="http://www.w3.org/2000/svg"
2606
- style=${o({
2606
+ style=${styleMap({
2607
2607
  width: `${options.width}px`,
2608
2608
  height: `${options.height}px`
2609
2609
  })}
@@ -2661,7 +2661,7 @@ const profileRestore = (options) => {
2661
2661
  viewBox="0 0 24 24"
2662
2662
  fill="none"
2663
2663
  xmlns="http://www.w3.org/2000/svg"
2664
- style=${o({
2664
+ style=${styleMap({
2665
2665
  width: `${options.width}px`,
2666
2666
  height: `${options.height}px`
2667
2667
  })}
@@ -2707,7 +2707,7 @@ const profile = (options) => {
2707
2707
  viewBox="0 0 24 24"
2708
2708
  fill="none"
2709
2709
  xmlns="http://www.w3.org/2000/svg"
2710
- style=${o({
2710
+ style=${styleMap({
2711
2711
  width: `${options.width}px`,
2712
2712
  height: `${options.height}px`
2713
2713
  })}
@@ -2732,7 +2732,7 @@ const qrCodeScan = (options) => {
2732
2732
  viewBox="0 0 24 24"
2733
2733
  fill="none"
2734
2734
  xmlns="http://www.w3.org/2000/svg"
2735
- style=${o({
2735
+ style=${styleMap({
2736
2736
  width: `${options.width}px`,
2737
2737
  height: `${options.height}px`
2738
2738
  })}
@@ -2850,7 +2850,7 @@ const qrCode = (options) => {
2850
2850
  viewBox="0 0 24 24"
2851
2851
  fill="none"
2852
2852
  xmlns="http://www.w3.org/2000/svg"
2853
- style=${o({
2853
+ style=${styleMap({
2854
2854
  width: `${options.width}px`,
2855
2855
  height: `${options.height}px`
2856
2856
  })}
@@ -2944,7 +2944,7 @@ const relayer = (options) => {
2944
2944
  viewBox="0 0 24 24"
2945
2945
  fill="none"
2946
2946
  xmlns="http://www.w3.org/2000/svg"
2947
- style=${o({
2947
+ style=${styleMap({
2948
2948
  width: `${options.width}px`,
2949
2949
  height: `${options.height}px`
2950
2950
  })}
@@ -2980,7 +2980,7 @@ const reload = (options) => {
2980
2980
  viewBox="0 0 24 24"
2981
2981
  fill="none"
2982
2982
  xmlns="http://www.w3.org/2000/svg"
2983
- style=${o({
2983
+ style=${styleMap({
2984
2984
  width: `${options.width}px`,
2985
2985
  height: `${options.height}px`
2986
2986
  })}
@@ -3008,7 +3008,7 @@ const returnDown = (options) => {
3008
3008
  viewBox="0 0 24 24"
3009
3009
  fill="none"
3010
3010
  xmlns="http://www.w3.org/2000/svg"
3011
- style=${o({
3011
+ style=${styleMap({
3012
3012
  width: `${options.width}px`,
3013
3013
  height: `${options.height}px`
3014
3014
  })}
@@ -3037,7 +3037,7 @@ const returnLeft = (options) => {
3037
3037
  viewBox="0 0 24 24"
3038
3038
  fill="none"
3039
3039
  xmlns="http://www.w3.org/2000/svg"
3040
- style=${o({
3040
+ style=${styleMap({
3041
3041
  width: `${options.width}px`,
3042
3042
  height: `${options.height}px`
3043
3043
  })}
@@ -3066,7 +3066,7 @@ const returnRight = (options) => {
3066
3066
  viewBox="0 0 24 24"
3067
3067
  fill="none"
3068
3068
  xmlns="http://www.w3.org/2000/svg"
3069
- style=${o({
3069
+ style=${styleMap({
3070
3070
  width: `${options.width}px`,
3071
3071
  height: `${options.height}px`
3072
3072
  })}
@@ -3095,7 +3095,7 @@ const returnUp = (options) => {
3095
3095
  viewBox="0 0 24 24"
3096
3096
  fill="none"
3097
3097
  xmlns="http://www.w3.org/2000/svg"
3098
- style=${o({
3098
+ style=${styleMap({
3099
3099
  width: `${options.width}px`,
3100
3100
  height: `${options.height}px`
3101
3101
  })}
@@ -3124,7 +3124,7 @@ const search = (options) => {
3124
3124
  viewBox="0 0 24 24"
3125
3125
  fill="none"
3126
3126
  xmlns="http://www.w3.org/2000/svg"
3127
- style=${o({
3127
+ style=${styleMap({
3128
3128
  width: `${options.width}px`,
3129
3129
  height: `${options.height}px`
3130
3130
  })}
@@ -3148,7 +3148,7 @@ const settings = (options) => {
3148
3148
  viewBox="0 0 24 24"
3149
3149
  fill="none"
3150
3150
  xmlns="http://www.w3.org/2000/svg"
3151
- style=${o({
3151
+ style=${styleMap({
3152
3152
  width: `${options.width}px`,
3153
3153
  height: `${options.height}px`
3154
3154
  })}
@@ -3177,7 +3177,7 @@ const smartContractDoc = (options) => {
3177
3177
  viewBox="0 0 24 24"
3178
3178
  fill="none"
3179
3179
  xmlns="http://www.w3.org/2000/svg"
3180
- style=${o({
3180
+ style=${styleMap({
3181
3181
  width: `${options.width}px`,
3182
3182
  height: `${options.height}px`
3183
3183
  })}
@@ -3213,7 +3213,7 @@ const smartContract = (options) => {
3213
3213
  viewBox="0 0 24 24"
3214
3214
  fill="none"
3215
3215
  xmlns="http://www.w3.org/2000/svg"
3216
- style=${o({
3216
+ style=${styleMap({
3217
3217
  width: `${options.width}px`,
3218
3218
  height: `${options.height}px`
3219
3219
  })}
@@ -3240,7 +3240,7 @@ const spinner = (options) => {
3240
3240
  viewBox="0 0 24 24"
3241
3241
  fill="none"
3242
3242
  xmlns="http://www.w3.org/2000/svg"
3243
- style=${o({
3243
+ style=${styleMap({
3244
3244
  width: `${options.width}px`,
3245
3245
  height: `${options.height}px`
3246
3246
  })}
@@ -3261,7 +3261,7 @@ const starFilled = (options) => {
3261
3261
  viewBox="0 0 24 24"
3262
3262
  fill="none"
3263
3263
  xmlns="http://www.w3.org/2000/svg"
3264
- style=${o({
3264
+ style=${styleMap({
3265
3265
  width: `${options.width}px`,
3266
3266
  height: `${options.height}px`
3267
3267
  })}
@@ -3280,7 +3280,7 @@ const starOutline = (options) => {
3280
3280
  viewBox="0 0 24 24"
3281
3281
  fill="none"
3282
3282
  xmlns="http://www.w3.org/2000/svg"
3283
- style=${o({
3283
+ style=${styleMap({
3284
3284
  width: `${options.width}px`,
3285
3285
  height: `${options.height}px`
3286
3286
  })}
@@ -3300,7 +3300,7 @@ const stepDot = (options) => {
3300
3300
  viewBox="0 0 24 24"
3301
3301
  fill="none"
3302
3302
  xmlns="http://www.w3.org/2000/svg"
3303
- style=${o({
3303
+ style=${styleMap({
3304
3304
  width: `${options.width}px`,
3305
3305
  height: `${options.height}px`
3306
3306
  })}
@@ -3330,7 +3330,7 @@ const stepProgress = (options) => {
3330
3330
  viewBox="0 0 24 24"
3331
3331
  fill="none"
3332
3332
  xmlns="http://www.w3.org/2000/svg"
3333
- style=${o({
3333
+ style=${styleMap({
3334
3334
  width: `${options.width}px`,
3335
3335
  height: `${options.height}px`
3336
3336
  })}
@@ -3357,7 +3357,7 @@ const steps = (options) => {
3357
3357
  viewBox="0 0 24 24"
3358
3358
  fill="none"
3359
3359
  xmlns="http://www.w3.org/2000/svg"
3360
- style=${o({
3360
+ style=${styleMap({
3361
3361
  width: `${options.width}px`,
3362
3362
  height: `${options.height}px`
3363
3363
  })}
@@ -3393,7 +3393,7 @@ const tick = (options) => {
3393
3393
  viewBox="0 0 24 24"
3394
3394
  fill="none"
3395
3395
  xmlns="http://www.w3.org/2000/svg"
3396
- style=${o({
3396
+ style=${styleMap({
3397
3397
  width: `${options.width}px`,
3398
3398
  height: `${options.height}px`
3399
3399
  })}
@@ -3415,7 +3415,7 @@ const timerOutline = (options) => {
3415
3415
  viewBox="0 0 24 24"
3416
3416
  fill="none"
3417
3417
  xmlns="http://www.w3.org/2000/svg"
3418
- style=${o({
3418
+ style=${styleMap({
3419
3419
  width: `${options.width}px`,
3420
3420
  height: `${options.height}px`
3421
3421
  })}
@@ -3458,7 +3458,7 @@ const transactionReceive = (options) => {
3458
3458
  viewBox="0 0 24 24"
3459
3459
  fill="none"
3460
3460
  xmlns="http://www.w3.org/2000/svg"
3461
- style=${o({
3461
+ style=${styleMap({
3462
3462
  width: `${options.width}px`,
3463
3463
  height: `${options.height}px`
3464
3464
  })}
@@ -3493,7 +3493,7 @@ const transactionSend = (options) => {
3493
3493
  viewBox="0 0 24 24"
3494
3494
  fill="none"
3495
3495
  xmlns="http://www.w3.org/2000/svg"
3496
- style=${o({
3496
+ style=${styleMap({
3497
3497
  width: `${options.width}px`,
3498
3498
  height: `${options.height}px`
3499
3499
  })}
@@ -3528,7 +3528,7 @@ const transfer = (options) => {
3528
3528
  viewBox="0 0 24 24"
3529
3529
  fill="none"
3530
3530
  xmlns="http://www.w3.org/2000/svg"
3531
- style=${o({
3531
+ style=${styleMap({
3532
3532
  width: `${options.width}px`,
3533
3533
  height: `${options.height}px`
3534
3534
  })}
@@ -3571,7 +3571,7 @@ const trash = (options) => {
3571
3571
  viewBox="0 0 24 24"
3572
3572
  fill="none"
3573
3573
  xmlns="http://www.w3.org/2000/svg"
3574
- style=${o({
3574
+ style=${styleMap({
3575
3575
  width: `${options.width}px`,
3576
3576
  height: `${options.height}px`
3577
3577
  })}
@@ -3607,7 +3607,7 @@ const turnDown = (options) => {
3607
3607
  viewBox="0 0 24 24"
3608
3608
  fill="none"
3609
3609
  xmlns="http://www.w3.org/2000/svg"
3610
- style=${o({
3610
+ style=${styleMap({
3611
3611
  width: `${options.width}px`,
3612
3612
  height: `${options.height}px`
3613
3613
  })}
@@ -3636,7 +3636,7 @@ const turnLeft = (options) => {
3636
3636
  viewBox="0 0 24 24"
3637
3637
  fill="none"
3638
3638
  xmlns="http://www.w3.org/2000/svg"
3639
- style=${o({
3639
+ style=${styleMap({
3640
3640
  width: `${options.width}px`,
3641
3641
  height: `${options.height}px`
3642
3642
  })}
@@ -3665,7 +3665,7 @@ const turnRight = (options) => {
3665
3665
  viewBox="0 0 24 24"
3666
3666
  fill="none"
3667
3667
  xmlns="http://www.w3.org/2000/svg"
3668
- style=${o({
3668
+ style=${styleMap({
3669
3669
  width: `${options.width}px`,
3670
3670
  height: `${options.height}px`
3671
3671
  })}
@@ -3694,7 +3694,7 @@ const turnUp = (options) => {
3694
3694
  viewBox="0 0 24 24"
3695
3695
  fill="none"
3696
3696
  xmlns="http://www.w3.org/2000/svg"
3697
- style=${o({
3697
+ style=${styleMap({
3698
3698
  width: `${options.width}px`,
3699
3699
  height: `${options.height}px`
3700
3700
  })}
@@ -3723,7 +3723,7 @@ const unlocked = (options) => {
3723
3723
  viewBox="0 0 24 24"
3724
3724
  fill="none"
3725
3725
  xmlns="http://www.w3.org/2000/svg"
3726
- style=${o({
3726
+ style=${styleMap({
3727
3727
  width: `${options.width}px`,
3728
3728
  height: `${options.height}px`
3729
3729
  })}
@@ -3760,7 +3760,7 @@ const walletOutline = (options) => {
3760
3760
  viewBox="0 0 24 24"
3761
3761
  fill="none"
3762
3762
  xmlns="http://www.w3.org/2000/svg"
3763
- style=${o({
3763
+ style=${styleMap({
3764
3764
  width: `${options.width}px`,
3765
3765
  height: `${options.height}px`
3766
3766
  })}
@@ -3791,7 +3791,7 @@ const warningRound = (options) => {
3791
3791
  viewBox="0 0 24 24"
3792
3792
  fill="none"
3793
3793
  xmlns="http://www.w3.org/2000/svg"
3794
- style=${o({
3794
+ style=${styleMap({
3795
3795
  width: `${options.width}px`,
3796
3796
  height: `${options.height}px`
3797
3797
  })}
@@ -3819,7 +3819,7 @@ const warningTriangle = (options) => {
3819
3819
  viewBox="0 0 24 24"
3820
3820
  fill="none"
3821
3821
  xmlns="http://www.w3.org/2000/svg"
3822
- style=${o({
3822
+ style=${styleMap({
3823
3823
  width: `${options.width}px`,
3824
3824
  height: `${options.height}px`
3825
3825
  })}
@@ -3847,7 +3847,7 @@ const googleColor = (options) => {
3847
3847
  viewBox="0 0 24 24"
3848
3848
  fill="none"
3849
3849
  xmlns="http://www.w3.org/2000/svg"
3850
- style=${o({
3850
+ style=${styleMap({
3851
3851
  width: `${options.width}px`,
3852
3852
  height: `${options.height}px`
3853
3853
  })}
@@ -3878,7 +3878,7 @@ const ethLogo = (options) => {
3878
3878
  viewBox="0 0 25 24"
3879
3879
  fill="none"
3880
3880
  xmlns="http://www.w3.org/2000/svg"
3881
- style=${o({
3881
+ style=${styleMap({
3882
3882
  width: `${options.width}px`,
3883
3883
  height: `${options.height}px`
3884
3884
  })}
@@ -3903,7 +3903,7 @@ const lyxLogo = (options) => {
3903
3903
  viewBox="0 0 16 16"
3904
3904
  fill="none"
3905
3905
  xmlns="http://www.w3.org/2000/svg"
3906
- style=${o({
3906
+ style=${styleMap({
3907
3907
  width: `${options.width}px`,
3908
3908
  height: `${options.height}px`
3909
3909
  })}
@@ -3941,7 +3941,7 @@ const progressIndicator = (options) => {
3941
3941
  viewBox="0 0 40 40"
3942
3942
  fill="none"
3943
3943
  xmlns="http://www.w3.org/2000/svg"
3944
- style=${o({
3944
+ style=${styleMap({
3945
3945
  width: `${options.width}px`,
3946
3946
  height: `${options.height}px`
3947
3947
  })}
@@ -4098,7 +4098,7 @@ const progressIndicator = (options) => {
4098
4098
  viewBox="0 0 40 40"
4099
4099
  fill="none"
4100
4100
  xmlns="http://www.w3.org/2000/svg"
4101
- style=${o({
4101
+ style=${styleMap({
4102
4102
  width: `${options.width}px`,
4103
4103
  height: `${options.height}px`
4104
4104
  })}
@@ -4168,7 +4168,7 @@ const progressIndicator = (options) => {
4168
4168
 
4169
4169
  const pulseDot = (options) => {
4170
4170
  return html`<div
4171
- style=${o({
4171
+ style=${styleMap({
4172
4172
  width: `${options.width}px`,
4173
4173
  height: `${options.height}px`
4174
4174
  })}
@@ -4191,7 +4191,7 @@ const progressComplete = (options) => {
4191
4191
  viewBox="0 0 40 40"
4192
4192
  fill="none"
4193
4193
  xmlns="http://www.w3.org/2000/svg"
4194
- style=${o({
4194
+ style=${styleMap({
4195
4195
  width: `${options.width}px`,
4196
4196
  height: `${options.height}px`
4197
4197
  })}
@@ -4476,7 +4476,7 @@ const completeFilledFadeIn = (options) => {
4476
4476
  viewBox="0 0 24 24"
4477
4477
  fill="none"
4478
4478
  xmlns="http://www.w3.org/2000/svg"
4479
- style=${o({
4479
+ style=${styleMap({
4480
4480
  width: `${options.width}px`,
4481
4481
  height: `${options.height}px`
4482
4482
  })}
@@ -4506,7 +4506,7 @@ const desktopSharp = (options) => {
4506
4506
  viewBox="0 0 24 24"
4507
4507
  fill="none"
4508
4508
  xmlns="http://www.w3.org/2000/svg"
4509
- style=${o({
4509
+ style=${styleMap({
4510
4510
  width: `${options.width}px`,
4511
4511
  height: `${options.height}px`
4512
4512
  })}
@@ -4525,7 +4525,7 @@ const switched = (options) => {
4525
4525
  viewBox="0 0 24 24"
4526
4526
  fill="none"
4527
4527
  xmlns="http://www.w3.org/2000/svg"
4528
- style=${o({
4528
+ style=${styleMap({
4529
4529
  width: `${options.width}px`,
4530
4530
  height: `${options.height}px`
4531
4531
  })}
@@ -4569,7 +4569,7 @@ const progressIndicatorAlt = (options) => {
4569
4569
  viewBox="0 0 64 64"
4570
4570
  fill="none"
4571
4571
  xmlns="http://www.w3.org/2000/svg"
4572
- style=${o({
4572
+ style=${styleMap({
4573
4573
  width: `${options.width}px`,
4574
4574
  height: `${options.height}px`
4575
4575
  })}
@@ -4641,7 +4641,7 @@ const progressIndicatorAlt = (options) => {
4641
4641
  viewBox="0 0 64 64"
4642
4642
  fill="none"
4643
4643
  xmlns="http://www.w3.org/2000/svg"
4644
- style=${o({
4644
+ style=${styleMap({
4645
4645
  width: `${options.width}px`,
4646
4646
  height: `${options.height}px`
4647
4647
  })}
@@ -4716,7 +4716,7 @@ const crossFilled = (options) => {
4716
4716
  viewBox="0 0 24 24"
4717
4717
  fill="none"
4718
4718
  xmlns="http://www.w3.org/2000/svg"
4719
- style=${o({
4719
+ style=${styleMap({
4720
4720
  width: `${options.width}px`,
4721
4721
  height: `${options.height}px`
4722
4722
  })}
@@ -4751,7 +4751,7 @@ const transferSend = (options) => {
4751
4751
  viewBox="0 0 24 24"
4752
4752
  fill="none"
4753
4753
  xmlns="http://www.w3.org/2000/svg"
4754
- style=${o({
4754
+ style=${styleMap({
4755
4755
  width: `${options.width}px`,
4756
4756
  height: `${options.height}px`
4757
4757
  })}
@@ -4785,7 +4785,7 @@ const flagOutline = (options) => {
4785
4785
  viewBox="0 0 24 24"
4786
4786
  fill="none"
4787
4787
  xmlns="http://www.w3.org/2000/svg"
4788
- style=${o({
4788
+ style=${styleMap({
4789
4789
  width: `${options.width}px`,
4790
4790
  height: `${options.height}px`
4791
4791
  })}
@@ -4807,7 +4807,7 @@ const tokenId = (options) => {
4807
4807
  viewBox="0 0 24 24"
4808
4808
  fill="none"
4809
4809
  xmlns="http://www.w3.org/2000/svg"
4810
- style=${o({
4810
+ style=${styleMap({
4811
4811
  width: `${options.width}px`,
4812
4812
  height: `${options.height}px`
4813
4813
  })}
@@ -4839,7 +4839,7 @@ const editDoc = (options) => {
4839
4839
  viewBox="0 0 24 24"
4840
4840
  fill="none"
4841
4841
  xmlns="http://www.w3.org/2000/svg"
4842
- style=${o({
4842
+ style=${styleMap({
4843
4843
  width: `${options.width}px`,
4844
4844
  height: `${options.height}px`
4845
4845
  })}
@@ -4899,7 +4899,7 @@ const codeOutline = (options) => {
4899
4899
  viewBox="0 0 24 24"
4900
4900
  fill="none"
4901
4901
  xmlns="http://www.w3.org/2000/svg"
4902
- style=${o({
4902
+ style=${styleMap({
4903
4903
  width: `${options.width}px`,
4904
4904
  height: `${options.height}px`
4905
4905
  })}
@@ -4928,7 +4928,7 @@ const saveOutline = (options) => {
4928
4928
  viewBox="0 0 24 24"
4929
4929
  fill="none"
4930
4930
  xmlns="http://www.w3.org/2000/svg"
4931
- style=${o({
4931
+ style=${styleMap({
4932
4932
  width: `${options.width}px`,
4933
4933
  height: `${options.height}px`
4934
4934
  })}
@@ -4950,7 +4950,7 @@ const scan = (options) => {
4950
4950
  viewBox="0 0 24 24"
4951
4951
  fill="none"
4952
4952
  xmlns="http://www.w3.org/2000/svg"
4953
- style=${o({
4953
+ style=${styleMap({
4954
4954
  width: `${options.width}px`,
4955
4955
  height: `${options.height}px`
4956
4956
  })}
@@ -4989,7 +4989,7 @@ const faceId = (options) => {
4989
4989
  viewBox="0 0 24 24"
4990
4990
  fill="none"
4991
4991
  xmlns="http://www.w3.org/2000/svg"
4992
- style=${o({
4992
+ style=${styleMap({
4993
4993
  width: `${options.width}px`,
4994
4994
  height: `${options.height}px`
4995
4995
  })}
@@ -5046,7 +5046,7 @@ const profileFile = (options) => {
5046
5046
  viewBox="0 0 24 24"
5047
5047
  fill="none"
5048
5048
  xmlns="http://www.w3.org/2000/svg"
5049
- style=${o({
5049
+ style=${styleMap({
5050
5050
  width: `${options.width}px`,
5051
5051
  height: `${options.height}px`
5052
5052
  })}
@@ -5084,7 +5084,7 @@ const handRightOutline = (options) => {
5084
5084
  viewBox="0 0 24 24"
5085
5085
  fill="none"
5086
5086
  xmlns="http://www.w3.org/2000/svg"
5087
- style=${o({
5087
+ style=${styleMap({
5088
5088
  width: `${options.width}px`,
5089
5089
  height: `${options.height}px`
5090
5090
  })}
@@ -5134,7 +5134,7 @@ const extensionOutline = (options) => {
5134
5134
  viewBox="0 0 24 24"
5135
5135
  fill="none"
5136
5136
  xmlns="http://www.w3.org/2000/svg"
5137
- style=${o({
5137
+ style=${styleMap({
5138
5138
  width: `${options.width}px`,
5139
5139
  height: `${options.height}px`
5140
5140
  })}
@@ -5153,7 +5153,7 @@ const luksoLogo = (options) => {
5153
5153
  viewBox="0 0 24 24"
5154
5154
  fill="none"
5155
5155
  xmlns="http://www.w3.org/2000/svg"
5156
- style=${o({
5156
+ style=${styleMap({
5157
5157
  width: `${options.width}px`,
5158
5158
  height: `${options.height}px`
5159
5159
  })}
@@ -5175,7 +5175,7 @@ const metamaskLogo = (options) => {
5175
5175
  height="26"
5176
5176
  viewBox="0 0 28 26"
5177
5177
  fill="none"
5178
- style=${o({
5178
+ style=${styleMap({
5179
5179
  width: `${options.width}px`,
5180
5180
  height: `${options.height}px`
5181
5181
  })}
@@ -5464,7 +5464,7 @@ const documentOutline = (options) => {
5464
5464
  viewBox="0 0 24 24"
5465
5465
  fill="none"
5466
5466
  xmlns="http://www.w3.org/2000/svg"
5467
- style=${o({
5467
+ style=${styleMap({
5468
5468
  width: `${options.width}px`,
5469
5469
  height: `${options.height}px`
5470
5470
  })}
@@ -5492,7 +5492,7 @@ const headsetOutline = (options) => {
5492
5492
  viewBox="0 0 24 24"
5493
5493
  fill="none"
5494
5494
  xmlns="http://www.w3.org/2000/svg"
5495
- style=${o({
5495
+ style=${styleMap({
5496
5496
  width: `${options.width}px`,
5497
5497
  height: `${options.height}px`
5498
5498
  })}
@@ -5526,7 +5526,7 @@ const cubeOutline = (options) => {
5526
5526
  viewBox="0 0 24 24"
5527
5527
  fill="none"
5528
5528
  xmlns="http://www.w3.org/2000/svg"
5529
- style=${o({
5529
+ style=${styleMap({
5530
5530
  width: `${options.width}px`,
5531
5531
  height: `${options.height}px`
5532
5532
  })}
@@ -5562,7 +5562,7 @@ const filmOutline = (options) => {
5562
5562
  viewBox="0 0 24 24"
5563
5563
  fill="none"
5564
5564
  xmlns="http://www.w3.org/2000/svg"
5565
- style=${o({
5565
+ style=${styleMap({
5566
5566
  width: `${options.width}px`,
5567
5567
  height: `${options.height}px`
5568
5568
  })}
@@ -5643,7 +5643,7 @@ const crossFilledFadeIn = (options) => {
5643
5643
  viewBox="0 0 24 24"
5644
5644
  fill="none"
5645
5645
  xmlns="http://www.w3.org/2000/svg"
5646
- style=${o({
5646
+ style=${styleMap({
5647
5647
  width: `${options.width}px`,
5648
5648
  height: `${options.height}px`
5649
5649
  })}
@@ -5680,7 +5680,7 @@ const videoOutline = (options) => {
5680
5680
  viewBox="0 0 24 24"
5681
5681
  fill="none"
5682
5682
  xmlns="http://www.w3.org/2000/svg"
5683
- style=${o({
5683
+ style=${styleMap({
5684
5684
  width: `${options.width}px`,
5685
5685
  height: `${options.height}px`
5686
5686
  })}
@@ -5762,7 +5762,7 @@ const walletRestore = (options) => {
5762
5762
  viewBox="0 0 24 24"
5763
5763
  fill="none"
5764
5764
  xmlns="http://www.w3.org/2000/svg"
5765
- style=${o({
5765
+ style=${styleMap({
5766
5766
  width: `${options.width}px`,
5767
5767
  height: `${options.height}px`
5768
5768
  })}
@@ -5800,7 +5800,7 @@ const logoX = (options) => {
5800
5800
  viewBox="0 0 24 24"
5801
5801
  fill="none"
5802
5802
  xmlns="http://www.w3.org/2000/svg"
5803
- style=${o({
5803
+ style=${styleMap({
5804
5804
  width: `${options.width}px`,
5805
5805
  height: `${options.height}px`
5806
5806
  })}
@@ -5819,7 +5819,7 @@ const logoFacebook = (options) => {
5819
5819
  viewBox="0 0 24 24"
5820
5820
  fill="none"
5821
5821
  xmlns="http://www.w3.org/2000/svg"
5822
- style=${o({
5822
+ style=${styleMap({
5823
5823
  width: `${options.width}px`,
5824
5824
  height: `${options.height}px`
5825
5825
  })}
@@ -5839,7 +5839,7 @@ const glasses = (options) => {
5839
5839
  viewBox="0 0 24 24"
5840
5840
  fill="none"
5841
5841
  xmlns="http://www.w3.org/2000/svg"
5842
- style=${o({
5842
+ style=${styleMap({
5843
5843
  width: `${options.width}px`,
5844
5844
  height: `${options.height}px`
5845
5845
  })}
@@ -5870,7 +5870,7 @@ const unlink = (options) => {
5870
5870
  viewBox="0 0 24 24"
5871
5871
  fill="none"
5872
5872
  xmlns="http://www.w3.org/2000/svg"
5873
- style=${o({
5873
+ style=${styleMap({
5874
5874
  width: `${options.width}px`,
5875
5875
  height: `${options.height}px`
5876
5876
  })}
@@ -5892,7 +5892,7 @@ const logoPolygon = (options) => {
5892
5892
  viewBox="0 0 25 24"
5893
5893
  fill="none"
5894
5894
  xmlns="http://www.w3.org/2000/svg"
5895
- style=${o({
5895
+ style=${styleMap({
5896
5896
  width: `${options.width}px`,
5897
5897
  height: `${options.height}px`
5898
5898
  })}
@@ -5915,7 +5915,7 @@ const logoFantom = (options) => {
5915
5915
  viewBox="0 0 25 24"
5916
5916
  fill="none"
5917
5917
  xmlns="http://www.w3.org/2000/svg"
5918
- style=${o({
5918
+ style=${styleMap({
5919
5919
  width: `${options.width}px`,
5920
5920
  height: `${options.height}px`
5921
5921
  })}
@@ -5941,7 +5941,7 @@ const logoXMono = (options) => {
5941
5941
  viewBox="0 0 24 24"
5942
5942
  fill="none"
5943
5943
  xmlns="http://www.w3.org/2000/svg"
5944
- style=${o({
5944
+ style=${styleMap({
5945
5945
  width: `${options.width}px`,
5946
5946
  height: `${options.height}px`
5947
5947
  })}
@@ -5960,7 +5960,7 @@ const logoInstagramMono = (options) => {
5960
5960
  viewBox="0 0 24 24"
5961
5961
  fill="none"
5962
5962
  xmlns="http://www.w3.org/2000/svg"
5963
- style=${o({
5963
+ style=${styleMap({
5964
5964
  width: `${options.width}px`,
5965
5965
  height: `${options.height}px`
5966
5966
  })}
@@ -5986,7 +5986,7 @@ const logoMediumMono = (options) => {
5986
5986
  viewBox="0 0 24 24"
5987
5987
  fill="none"
5988
5988
  xmlns="http://www.w3.org/2000/svg"
5989
- style=${o({
5989
+ style=${styleMap({
5990
5990
  width: `${options.width}px`,
5991
5991
  height: `${options.height}px`
5992
5992
  })}
@@ -6012,7 +6012,7 @@ const logoDiscordMono = (options) => {
6012
6012
  viewBox="0 0 24 24"
6013
6013
  fill="none"
6014
6014
  xmlns="http://www.w3.org/2000/svg"
6015
- style=${o({
6015
+ style=${styleMap({
6016
6016
  width: `${options.width}px`,
6017
6017
  height: `${options.height}px`
6018
6018
  })}
@@ -6038,7 +6038,7 @@ const logoSnapchatMono = (options) => {
6038
6038
  viewBox="0 0 24 24"
6039
6039
  fill="none"
6040
6040
  xmlns="http://www.w3.org/2000/svg"
6041
- style=${o({
6041
+ style=${styleMap({
6042
6042
  width: `${options.width}px`,
6043
6043
  height: `${options.height}px`
6044
6044
  })}
@@ -6064,7 +6064,7 @@ const logoWhatsappMono = (options) => {
6064
6064
  viewBox="0 0 24 24"
6065
6065
  fill="none"
6066
6066
  xmlns="http://www.w3.org/2000/svg"
6067
- style=${o({
6067
+ style=${styleMap({
6068
6068
  width: `${options.width}px`,
6069
6069
  height: `${options.height}px`
6070
6070
  })}
@@ -6090,7 +6090,7 @@ const logoTelegramMono = (options) => {
6090
6090
  viewBox="0 0 24 24"
6091
6091
  fill="none"
6092
6092
  xmlns="http://www.w3.org/2000/svg"
6093
- style=${o({
6093
+ style=${styleMap({
6094
6094
  width: `${options.width}px`,
6095
6095
  height: `${options.height}px`
6096
6096
  })}
@@ -6116,7 +6116,7 @@ const logoLinkedinMono = (options) => {
6116
6116
  viewBox="0 0 24 24"
6117
6117
  fill="none"
6118
6118
  xmlns="http://www.w3.org/2000/svg"
6119
- style=${o({
6119
+ style=${styleMap({
6120
6120
  width: `${options.width}px`,
6121
6121
  height: `${options.height}px`
6122
6122
  })}
@@ -6142,7 +6142,7 @@ const logoGithubMono = (options) => {
6142
6142
  viewBox="0 0 24 24"
6143
6143
  fill="none"
6144
6144
  xmlns="http://www.w3.org/2000/svg"
6145
- style=${o({
6145
+ style=${styleMap({
6146
6146
  width: `${options.width}px`,
6147
6147
  height: `${options.height}px`
6148
6148
  })}
@@ -6168,7 +6168,7 @@ const logoUniversalPageMono = (options) => {
6168
6168
  viewBox="0 0 24 24"
6169
6169
  fill="none"
6170
6170
  xmlns="http://www.w3.org/2000/svg"
6171
- style=${o({
6171
+ style=${styleMap({
6172
6172
  width: `${options.width}px`,
6173
6173
  height: `${options.height}px`
6174
6174
  })}
@@ -6200,7 +6200,7 @@ const database = (options) => {
6200
6200
  viewBox="0 0 24 24"
6201
6201
  fill="none"
6202
6202
  xmlns="http://www.w3.org/2000/svg"
6203
- style=${o({
6203
+ style=${styleMap({
6204
6204
  width: `${options.width}px`,
6205
6205
  height: `${options.height}px`
6206
6206
  })}
@@ -6236,7 +6236,7 @@ const emptyOutline = (options) => {
6236
6236
  viewBox="0 0 24 24"
6237
6237
  fill="none"
6238
6238
  xmlns="http://www.w3.org/2000/svg"
6239
- style=${o({
6239
+ style=${styleMap({
6240
6240
  width: `${options.width}px`,
6241
6241
  height: `${options.height}px`
6242
6242
  })}
@@ -6256,7 +6256,7 @@ const profileRemove = (options) => {
6256
6256
  viewBox="0 0 24 24"
6257
6257
  fill="none"
6258
6258
  xmlns="http://www.w3.org/2000/svg"
6259
- style=${o({
6259
+ style=${styleMap({
6260
6260
  width: `${options.width}px`,
6261
6261
  height: `${options.height}px`
6262
6262
  })}
@@ -6288,7 +6288,7 @@ const logoYoutubeMono = (options) => {
6288
6288
  viewBox="0 0 24 24"
6289
6289
  fill="none"
6290
6290
  xmlns="http://www.w3.org/2000/svg"
6291
- style=${o({
6291
+ style=${styleMap({
6292
6292
  width: `${options.width}px`,
6293
6293
  height: `${options.height}px`
6294
6294
  })}
@@ -6307,7 +6307,7 @@ const addGrid = (options) => {
6307
6307
  viewBox="0 0 24 24"
6308
6308
  fill="none"
6309
6309
  xmlns="http://www.w3.org/2000/svg"
6310
- style=${o({
6310
+ style=${styleMap({
6311
6311
  width: `${options.width}px`,
6312
6312
  height: `${options.height}px`
6313
6313
  })}
@@ -6379,7 +6379,7 @@ const gallery = (options) => {
6379
6379
  viewBox="0 0 24 24"
6380
6380
  fill="none"
6381
6381
  xmlns="http://www.w3.org/2000/svg"
6382
- style=${o({
6382
+ style=${styleMap({
6383
6383
  width: `${options.width}px`,
6384
6384
  height: `${options.height}px`
6385
6385
  })}
@@ -6415,7 +6415,7 @@ const logoElfsightMono = (options) => {
6415
6415
  viewBox="0 0 24 24"
6416
6416
  fill="none"
6417
6417
  xmlns="http://www.w3.org/2000/svg"
6418
- style=${o({
6418
+ style=${styleMap({
6419
6419
  width: `${options.width}px`,
6420
6420
  height: `${options.height}px`
6421
6421
  })}
@@ -6463,7 +6463,7 @@ const maximizeVertical = (options) => {
6463
6463
  viewBox="0 0 24 24"
6464
6464
  fill="none"
6465
6465
  xmlns="http://www.w3.org/2000/svg"
6466
- style=${o({
6466
+ style=${styleMap({
6467
6467
  width: `${options.width}px`,
6468
6468
  height: `${options.height}px`
6469
6469
  })}
@@ -6499,7 +6499,7 @@ const minimizeVertical = (options) => {
6499
6499
  viewBox="0 0 24 24"
6500
6500
  fill="none"
6501
6501
  xmlns="http://www.w3.org/2000/svg"
6502
- style=${o({
6502
+ style=${styleMap({
6503
6503
  width: `${options.width}px`,
6504
6504
  height: `${options.height}px`
6505
6505
  })}
@@ -6542,7 +6542,7 @@ const chart = (options) => {
6542
6542
  viewBox="0 0 24 24"
6543
6543
  fill="none"
6544
6544
  xmlns="http://www.w3.org/2000/svg"
6545
- style=${o({
6545
+ style=${styleMap({
6546
6546
  width: `${options.width}px`,
6547
6547
  height: `${options.height}px`
6548
6548
  })}
@@ -6586,7 +6586,7 @@ const people = (options) => {
6586
6586
  viewBox="0 0 24 24"
6587
6587
  fill="none"
6588
6588
  xmlns="http://www.w3.org/2000/svg"
6589
- style=${o({
6589
+ style=${styleMap({
6590
6590
  width: `${options.width}px`,
6591
6591
  height: `${options.height}px`
6592
6592
  })}
@@ -6643,7 +6643,7 @@ const documentCode = (options) => {
6643
6643
  viewBox="0 0 24 24"
6644
6644
  fill="none"
6645
6645
  xmlns="http://www.w3.org/2000/svg"
6646
- style=${o({
6646
+ style=${styleMap({
6647
6647
  width: `${options.width}px`,
6648
6648
  height: `${options.height}px`
6649
6649
  })}
@@ -6690,7 +6690,7 @@ const logoWarpcastMono = (options) => {
6690
6690
  viewBox="0 0 24 24"
6691
6691
  fill="none"
6692
6692
  xmlns="http://www.w3.org/2000/svg"
6693
- style=${o({
6693
+ style=${styleMap({
6694
6694
  width: `${options.width}px`,
6695
6695
  height: `${options.height}px`
6696
6696
  })}
@@ -6842,7 +6842,7 @@ const parachute = (options) => {
6842
6842
  viewBox="0 0 24 24"
6843
6843
  fill="none"
6844
6844
  xmlns="http://www.w3.org/2000/svg"
6845
- style=${o({
6845
+ style=${styleMap({
6846
6846
  width: `${options.width}px`,
6847
6847
  height: `${options.height}px`
6848
6848
  })}
@@ -6862,7 +6862,7 @@ const bitcoinConvert = (options) => {
6862
6862
  viewBox="0 0 24 24"
6863
6863
  fill="none"
6864
6864
  xmlns="http://www.w3.org/2000/svg"
6865
- style=${o({
6865
+ style=${styleMap({
6866
6866
  width: `${options.width}px`,
6867
6867
  height: `${options.height}px`
6868
6868
  })}
@@ -6923,7 +6923,7 @@ const nft = (options) => {
6923
6923
  viewBox="0 0 24 24"
6924
6924
  fill="none"
6925
6925
  xmlns="http://www.w3.org/2000/svg"
6926
- style=${o({
6926
+ style=${styleMap({
6927
6927
  width: `${options.width}px`,
6928
6928
  height: `${options.height}px`
6929
6929
  })}
@@ -6949,7 +6949,7 @@ const fingerprint = (options) => {
6949
6949
  viewBox="0 0 24 24"
6950
6950
  fill="none"
6951
6951
  xmlns="http://www.w3.org/2000/svg"
6952
- style=${o({
6952
+ style=${styleMap({
6953
6953
  width: `${options.width}px`,
6954
6954
  height: `${options.height}px`
6955
6955
  })}
@@ -6968,7 +6968,7 @@ const hammer = (options) => {
6968
6968
  viewBox="0 0 24 24"
6969
6969
  fill="none"
6970
6970
  xmlns="http://www.w3.org/2000/svg"
6971
- style=${o({
6971
+ style=${styleMap({
6972
6972
  width: `${options.width}px`,
6973
6973
  height: `${options.height}px`
6974
6974
  })}
@@ -7004,7 +7004,7 @@ const handHeart = (options) => {
7004
7004
  viewBox="0 0 24 24"
7005
7005
  fill="none"
7006
7006
  xmlns="http://www.w3.org/2000/svg"
7007
- style=${o({
7007
+ style=${styleMap({
7008
7008
  width: `${options.width}px`,
7009
7009
  height: `${options.height}px`
7010
7010
  })}
@@ -7023,7 +7023,7 @@ const earth = (options) => {
7023
7023
  viewBox="0 0 24 24"
7024
7024
  fill="none"
7025
7025
  xmlns="http://www.w3.org/2000/svg"
7026
- style=${o({
7026
+ style=${styleMap({
7027
7027
  width: `${options.width}px`,
7028
7028
  height: `${options.height}px`
7029
7029
  })}
@@ -7066,7 +7066,7 @@ const logoSoundcloudMono = (options) => {
7066
7066
  viewBox="0 0 24 24"
7067
7067
  fill="none"
7068
7068
  xmlns="http://www.w3.org/2000/svg"
7069
- style=${o({
7069
+ style=${styleMap({
7070
7070
  width: `${options.width}px`,
7071
7071
  height: `${options.height}px`
7072
7072
  })}
@@ -7092,7 +7092,7 @@ const logoSpotifyMono = (options) => {
7092
7092
  viewBox="0 0 24 24"
7093
7093
  fill="none"
7094
7094
  xmlns="http://www.w3.org/2000/svg"
7095
- style=${o({
7095
+ style=${styleMap({
7096
7096
  width: `${options.width}px`,
7097
7097
  height: `${options.height}px`
7098
7098
  })}
@@ -7118,7 +7118,7 @@ const logoGoogleCalendarMono = (options) => {
7118
7118
  viewBox="0 0 24 24"
7119
7119
  fill="none"
7120
7120
  xmlns="http://www.w3.org/2000/svg"
7121
- style=${o({
7121
+ style=${styleMap({
7122
7122
  width: `${options.width}px`,
7123
7123
  height: `${options.height}px`
7124
7124
  })}
@@ -7144,7 +7144,7 @@ const logoSubstackMono = (options) => {
7144
7144
  viewBox="0 0 24 24"
7145
7145
  fill="none"
7146
7146
  xmlns="http://www.w3.org/2000/svg"
7147
- style=${o({
7147
+ style=${styleMap({
7148
7148
  width: `${options.width}px`,
7149
7149
  height: `${options.height}px`
7150
7150
  })}
@@ -7163,7 +7163,7 @@ const logoXround = (options) => {
7163
7163
  viewBox="0 0 24 24"
7164
7164
  fill="none"
7165
7165
  xmlns="http://www.w3.org/2000/svg"
7166
- style=${o({
7166
+ style=${styleMap({
7167
7167
  width: `${options.width}px`,
7168
7168
  height: `${options.height}px`
7169
7169
  })}
@@ -7186,7 +7186,7 @@ const logoFarcaster = (options) => {
7186
7186
  viewBox="0 0 24 24"
7187
7187
  fill="none"
7188
7188
  xmlns="http://www.w3.org/2000/svg"
7189
- style=${o({
7189
+ style=${styleMap({
7190
7190
  width: `${options.width}px`,
7191
7191
  height: `${options.height}px`
7192
7192
  })}
@@ -7208,7 +7208,7 @@ const logoLinkedin = (options) => {
7208
7208
  viewBox="0 0 24 24"
7209
7209
  fill="none"
7210
7210
  xmlns="http://www.w3.org/2000/svg"
7211
- style=${o({
7211
+ style=${styleMap({
7212
7212
  width: `${options.width}px`,
7213
7213
  height: `${options.height}px`
7214
7214
  })}
@@ -7232,7 +7232,7 @@ const profileRestoreNoSetup = (options) => {
7232
7232
  viewBox="0 0 24 24"
7233
7233
  fill="none"
7234
7234
  xmlns="http://www.w3.org/2000/svg"
7235
- style=${o({
7235
+ style=${styleMap({
7236
7236
  width: `${options.width}px`,
7237
7237
  height: `${options.height}px`
7238
7238
  })}
@@ -7292,7 +7292,7 @@ const share = (options) => {
7292
7292
  viewBox="0 0 24 24"
7293
7293
  fill="none"
7294
7294
  xmlns="http://www.w3.org/2000/svg"
7295
- style=${o({
7295
+ style=${styleMap({
7296
7296
  width: `${options.width}px`,
7297
7297
  height: `${options.height}px`
7298
7298
  })}
@@ -7328,7 +7328,7 @@ const logoFacebookRound = (options) => {
7328
7328
  viewBox="0 0 24 24"
7329
7329
  fill="none"
7330
7330
  xmlns="http://www.w3.org/2000/svg"
7331
- style=${o({
7331
+ style=${styleMap({
7332
7332
  width: `${options.width}px`,
7333
7333
  height: `${options.height}px`
7334
7334
  })}
@@ -7348,7 +7348,7 @@ const logoFarcasterRound = (options) => {
7348
7348
  viewBox="0 0 24 24"
7349
7349
  fill="none"
7350
7350
  xmlns="http://www.w3.org/2000/svg"
7351
- style=${o({
7351
+ style=${styleMap({
7352
7352
  width: `${options.width}px`,
7353
7353
  height: `${options.height}px`
7354
7354
  })}
@@ -7370,7 +7370,7 @@ const logoLinkedinRound = (options) => {
7370
7370
  viewBox="0 0 24 24"
7371
7371
  fill="none"
7372
7372
  xmlns="http://www.w3.org/2000/svg"
7373
- style=${o({
7373
+ style=${styleMap({
7374
7374
  width: `${options.width}px`,
7375
7375
  height: `${options.height}px`
7376
7376
  })}
@@ -7394,7 +7394,7 @@ const arrowLongDown = (options) => {
7394
7394
  viewBox="0 0 24 24"
7395
7395
  fill="none"
7396
7396
  xmlns="http://www.w3.org/2000/svg"
7397
- style=${o({
7397
+ style=${styleMap({
7398
7398
  width: `${options.width}px`,
7399
7399
  height: `${options.height}px`
7400
7400
  })}
@@ -7423,7 +7423,7 @@ const gas = (options) => {
7423
7423
  viewBox="0 0 24 24"
7424
7424
  fill="none"
7425
7425
  xmlns="http://www.w3.org/2000/svg"
7426
- style=${o({
7426
+ style=${styleMap({
7427
7427
  width: `${options.width}px`,
7428
7428
  height: `${options.height}px`
7429
7429
  })}
@@ -7470,7 +7470,7 @@ const minusFilled = (options) => {
7470
7470
  viewBox="0 0 24 24"
7471
7471
  fill="none"
7472
7472
  xmlns="http://www.w3.org/2000/svg"
7473
- style=${o({
7473
+ style=${styleMap({
7474
7474
  width: `${options.width}px`,
7475
7475
  height: `${options.height}px`
7476
7476
  })}
@@ -7492,7 +7492,7 @@ const documentText = (options) => {
7492
7492
  viewBox="0 0 25 24"
7493
7493
  fill="none"
7494
7494
  xmlns="http://www.w3.org/2000/svg"
7495
- style=${o({
7495
+ style=${styleMap({
7496
7496
  width: `${options.width}px`,
7497
7497
  height: `${options.height}px`
7498
7498
  })}
@@ -7515,7 +7515,7 @@ const category = (options) => {
7515
7515
  viewBox="0 0 24 24"
7516
7516
  fill="none"
7517
7517
  xmlns="http://www.w3.org/2000/svg"
7518
- style=${o({
7518
+ style=${styleMap({
7519
7519
  width: `${options.width}px`,
7520
7520
  height: `${options.height}px`
7521
7521
  })}
@@ -7562,7 +7562,7 @@ const flash = (options) => {
7562
7562
  viewBox="0 0 24 24"
7563
7563
  fill="none"
7564
7564
  xmlns="http://www.w3.org/2000/svg"
7565
- style=${o({
7565
+ style=${styleMap({
7566
7566
  width: `${options.width}px`,
7567
7567
  height: `${options.height}px`
7568
7568
  })}
@@ -7585,7 +7585,7 @@ const userCircleAdd = (options) => {
7585
7585
  viewBox="0 0 24 24"
7586
7586
  fill="none"
7587
7587
  xmlns="http://www.w3.org/2000/svg"
7588
- style=${o({
7588
+ style=${styleMap({
7589
7589
  width: `${options.width}px`,
7590
7590
  height: `${options.height}px`
7591
7591
  })}
@@ -7645,7 +7645,7 @@ const profileCircle = (options) => {
7645
7645
  viewBox="0 0 24 24"
7646
7646
  fill="none"
7647
7647
  xmlns="http://www.w3.org/2000/svg"
7648
- style=${o({
7648
+ style=${styleMap({
7649
7649
  width: `${options.width}px`,
7650
7650
  height: `${options.height}px`
7651
7651
  })}
@@ -7681,7 +7681,7 @@ const playLinear = (options) => {
7681
7681
  viewBox="0 0 24 24"
7682
7682
  fill="none"
7683
7683
  xmlns="http://www.w3.org/2000/svg"
7684
- style=${o({
7684
+ style=${styleMap({
7685
7685
  width: `${options.width}px`,
7686
7686
  height: `${options.height}px`
7687
7687
  })}
@@ -7704,7 +7704,7 @@ const stopLinear = (options) => {
7704
7704
  viewBox="0 0 24 24"
7705
7705
  fill="none"
7706
7706
  xmlns="http://www.w3.org/2000/svg"
7707
- style=${o({
7707
+ style=${styleMap({
7708
7708
  width: `${options.width}px`,
7709
7709
  height: `${options.height}px`
7710
7710
  })}
@@ -7720,7 +7720,7 @@ const stopLinear = (options) => {
7720
7720
  };
7721
7721
 
7722
7722
  const minus = (options) => {
7723
- return html`<svg width="24" height="24" viewBox="0 0 24 24" style=${o({
7723
+ return html`<svg width="24" height="24" viewBox="0 0 24 24" style=${styleMap({
7724
7724
  width: `${options.width}px`,
7725
7725
  height: `${options.height}px`
7726
7726
  })} fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.417 12.75h-12c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h12c.41 0 .75.34.75.75s-.34.75-.75.75" fill="var(--${options.color})"></svg>`;
@@ -7733,7 +7733,7 @@ const medalStar = (options) => {
7733
7733
  viewBox="0 0 24 24"
7734
7734
  fill="none"
7735
7735
  xmlns="http://www.w3.org/2000/svg"
7736
- style=${o({
7736
+ style=${styleMap({
7737
7737
  width: `${options.width}px`,
7738
7738
  height: `${options.height}px`
7739
7739
  })}
@@ -7771,7 +7771,7 @@ const editLinear = (options) => {
7771
7771
  viewBox="0 0 24 24"
7772
7772
  fill="none"
7773
7773
  xmlns="http://www.w3.org/2000/svg"
7774
- style=${o({
7774
+ style=${styleMap({
7775
7775
  width: `${options.width}px`,
7776
7776
  height: `${options.height}px`
7777
7777
  })}
@@ -7809,7 +7809,7 @@ const imageLinear = (options) => {
7809
7809
  viewBox="0 0 25 24"
7810
7810
  fill="none"
7811
7811
  xmlns="http://www.w3.org/2000/svg"
7812
- style=${o({
7812
+ style=${styleMap({
7813
7813
  width: `${options.width}px`,
7814
7814
  height: `${options.height}px`
7815
7815
  })}
@@ -7839,7 +7839,7 @@ const hexagon = (options) => {
7839
7839
  viewBox="0 0 25 24"
7840
7840
  fill="none"
7841
7841
  xmlns="http://www.w3.org/2000/svg"
7842
- style=${o({
7842
+ style=${styleMap({
7843
7843
  width: `${options.width}px`,
7844
7844
  height: `${options.height}px`
7845
7845
  })}
@@ -7861,7 +7861,7 @@ const rowVertical = (options) => {
7861
7861
  viewBox="0 0 24 24"
7862
7862
  fill="none"
7863
7863
  xmlns="http://www.w3.org/2000/svg"
7864
- style=${o({
7864
+ style=${styleMap({
7865
7865
  width: `${options.width}px`,
7866
7866
  height: `${options.height}px`
7867
7867
  })}
@@ -7890,7 +7890,7 @@ const logoTiktokMono = (options) => {
7890
7890
  viewBox="0 0 24 24"
7891
7891
  fill="none"
7892
7892
  xmlns="http://www.w3.org/2000/svg"
7893
- style=${o({
7893
+ style=${styleMap({
7894
7894
  width: `${options.width}px`,
7895
7895
  height: `${options.height}px`
7896
7896
  })}
@@ -7909,7 +7909,7 @@ const profileFollowing = (options) => {
7909
7909
  viewBox="0 0 24 24"
7910
7910
  fill="none"
7911
7911
  xmlns="http://www.w3.org/2000/svg"
7912
- style=${o({
7912
+ style=${styleMap({
7913
7913
  width: `${options.width}px`,
7914
7914
  height: `${options.height}px`
7915
7915
  })}
@@ -7942,7 +7942,7 @@ const logoCommonGroundMono = (options) => {
7942
7942
  viewBox="0 0 24 24"
7943
7943
  fill="none"
7944
7944
  xmlns="http://www.w3.org/2000/svg"
7945
- style=${o({
7945
+ style=${styleMap({
7946
7946
  width: `${options.width}px`,
7947
7947
  height: `${options.height}px`
7948
7948
  })}
@@ -8005,7 +8005,7 @@ const logoHyperlaneMono = (options) => {
8005
8005
  viewBox="0 0 540 494"
8006
8006
  fill="none"
8007
8007
  xmlns="http://www.w3.org/2000/svg"
8008
- style=${o({
8008
+ style=${styleMap({
8009
8009
  width: `${options.width}px`,
8010
8010
  height: `${options.height}px`
8011
8011
  })}
@@ -8035,7 +8035,7 @@ const logoHyperlane = (options) => {
8035
8035
  viewBox="0 0 1000 1000"
8036
8036
  fill="none"
8037
8037
  xmlns="http://www.w3.org/2000/svg"
8038
- style=${o({
8038
+ style=${styleMap({
8039
8039
  width: `${options.width}px`,
8040
8040
  height: `${options.height}px`
8041
8041
  })}
@@ -8068,7 +8068,7 @@ const tokenCreate = (options) => {
8068
8068
  viewBox="0 0 24 24"
8069
8069
  fill="none"
8070
8070
  xmlns="http://www.w3.org/2000/svg"
8071
- style=${o({
8071
+ style=${styleMap({
8072
8072
  width: `${options.width}px`,
8073
8073
  height: `${options.height}px`
8074
8074
  })}
@@ -8103,7 +8103,7 @@ const addcontrollerActivated = (options) => {
8103
8103
  viewBox="0 0 80 80"
8104
8104
  fill="none"
8105
8105
  xmlns="http://www.w3.org/2000/svg"
8106
- style=${o({
8106
+ style=${styleMap({
8107
8107
  width: `${options.width}px`,
8108
8108
  height: `${options.height}px`
8109
8109
  })}
@@ -8286,7 +8286,7 @@ const addcontrollerInactive = (options) => {
8286
8286
  viewBox="0 0 80 80"
8287
8287
  fill="none"
8288
8288
  xmlns="http://www.w3.org/2000/svg"
8289
- style=${o({
8289
+ style=${styleMap({
8290
8290
  width: `${options.width}px`,
8291
8291
  height: `${options.height}px`
8292
8292
  })}
@@ -8414,7 +8414,7 @@ const addextensionsActivated = (options) => {
8414
8414
  viewBox="0 0 80 80"
8415
8415
  fill="none"
8416
8416
  xmlns="http://www.w3.org/2000/svg"
8417
- style=${o({
8417
+ style=${styleMap({
8418
8418
  width: `${options.width}px`,
8419
8419
  height: `${options.height}px`
8420
8420
  })}
@@ -8547,7 +8547,7 @@ const addextensionsInactive = (options) => {
8547
8547
  viewBox="0 0 80 80"
8548
8548
  fill="none"
8549
8549
  xmlns="http://www.w3.org/2000/svg"
8550
- style=${o({
8550
+ style=${styleMap({
8551
8551
  width: `${options.width}px`,
8552
8552
  height: `${options.height}px`
8553
8553
  })}
@@ -8606,7 +8606,7 @@ const adduniversalreceiverdelegateActivated = (options) => {
8606
8606
  viewBox="0 0 80 80"
8607
8607
  fill="none"
8608
8608
  xmlns="http://www.w3.org/2000/svg"
8609
- style=${o({
8609
+ style=${styleMap({
8610
8610
  width: `${options.width}px`,
8611
8611
  height: `${options.height}px`
8612
8612
  })}
@@ -8738,7 +8738,7 @@ const adduniversalreceiverdelegateInactive = (options) => {
8738
8738
  viewBox="0 0 80 80"
8739
8739
  fill="none"
8740
8740
  xmlns="http://www.w3.org/2000/svg"
8741
- style=${o({
8741
+ style=${styleMap({
8742
8742
  width: `${options.width}px`,
8743
8743
  height: `${options.height}px`
8744
8744
  })}
@@ -8802,7 +8802,7 @@ const callActivated = (options) => {
8802
8802
  viewBox="0 0 80 80"
8803
8803
  fill="none"
8804
8804
  xmlns="http://www.w3.org/2000/svg"
8805
- style=${o({
8805
+ style=${styleMap({
8806
8806
  width: `${options.width}px`,
8807
8807
  height: `${options.height}px`
8808
8808
  })}
@@ -8912,7 +8912,7 @@ const callInactive = (options) => {
8912
8912
  viewBox="0 0 80 80"
8913
8913
  fill="none"
8914
8914
  xmlns="http://www.w3.org/2000/svg"
8915
- style=${o({
8915
+ style=${styleMap({
8916
8916
  width: `${options.width}px`,
8917
8917
  height: `${options.height}px`
8918
8918
  })}
@@ -8967,7 +8967,7 @@ const changeextensionsActivated = (options) => {
8967
8967
  viewBox="0 0 80 80"
8968
8968
  fill="none"
8969
8969
  xmlns="http://www.w3.org/2000/svg"
8970
- style=${o({
8970
+ style=${styleMap({
8971
8971
  width: `${options.width}px`,
8972
8972
  height: `${options.height}px`
8973
8973
  })}
@@ -9143,7 +9143,7 @@ const changeextensionsInactive = (options) => {
9143
9143
  viewBox="0 0 80 80"
9144
9144
  fill="none"
9145
9145
  xmlns="http://www.w3.org/2000/svg"
9146
- style=${o({
9146
+ style=${styleMap({
9147
9147
  width: `${options.width}px`,
9148
9148
  height: `${options.height}px`
9149
9149
  })}
@@ -9237,7 +9237,7 @@ const changeownerActivated = (options) => {
9237
9237
  viewBox="0 0 80 80"
9238
9238
  fill="none"
9239
9239
  xmlns="http://www.w3.org/2000/svg"
9240
- style=${o({
9240
+ style=${styleMap({
9241
9241
  width: `${options.width}px`,
9242
9242
  height: `${options.height}px`
9243
9243
  })}
@@ -9452,7 +9452,7 @@ const changeownerInactive = (options) => {
9452
9452
  viewBox="0 0 80 80"
9453
9453
  fill="none"
9454
9454
  xmlns="http://www.w3.org/2000/svg"
9455
- style=${o({
9455
+ style=${styleMap({
9456
9456
  width: `${options.width}px`,
9457
9457
  height: `${options.height}px`
9458
9458
  })}
@@ -9569,7 +9569,7 @@ const changepermissionsActivated = (options) => {
9569
9569
  viewBox="0 0 40 40"
9570
9570
  fill="none"
9571
9571
  xmlns="http://www.w3.org/2000/svg"
9572
- style=${o({
9572
+ style=${styleMap({
9573
9573
  width: `${options.width}px`,
9574
9574
  height: `${options.height}px`
9575
9575
  })}
@@ -9634,7 +9634,7 @@ const changepermissionsInactive = (options) => {
9634
9634
  viewBox="0 0 40 40"
9635
9635
  fill="none"
9636
9636
  xmlns="http://www.w3.org/2000/svg"
9637
- style=${o({
9637
+ style=${styleMap({
9638
9638
  width: `${options.width}px`,
9639
9639
  height: `${options.height}px`
9640
9640
  })}
@@ -9822,7 +9822,7 @@ const changeUniversalReceiverDelegateActivated = (options) => {
9822
9822
  viewBox="0 0 80 80"
9823
9823
  fill="none"
9824
9824
  xmlns="http://www.w3.org/2000/svg"
9825
- style=${o({
9825
+ style=${styleMap({
9826
9826
  width: `${options.width}px`,
9827
9827
  height: `${options.height}px`
9828
9828
  })}
@@ -9954,7 +9954,7 @@ const changeUniversalReceiverDelegateInactive = (options) => {
9954
9954
  viewBox="0 0 80 80"
9955
9955
  fill="none"
9956
9956
  xmlns="http://www.w3.org/2000/svg"
9957
- style=${o({
9957
+ style=${styleMap({
9958
9958
  width: `${options.width}px`,
9959
9959
  height: `${options.height}px`
9960
9960
  })}
@@ -10011,7 +10011,7 @@ const decryptActivated = (options) => {
10011
10011
  viewBox="0 0 80 80"
10012
10012
  fill="none"
10013
10013
  xmlns="http://www.w3.org/2000/svg"
10014
- style=${o({
10014
+ style=${styleMap({
10015
10015
  width: `${options.width}px`,
10016
10016
  height: `${options.height}px`
10017
10017
  })}
@@ -10199,7 +10199,7 @@ const decryptInactive = (options) => {
10199
10199
  viewBox="0 0 80 80"
10200
10200
  fill="none"
10201
10201
  xmlns="http://www.w3.org/2000/svg"
10202
- style=${o({
10202
+ style=${styleMap({
10203
10203
  width: `${options.width}px`,
10204
10204
  height: `${options.height}px`
10205
10205
  })}
@@ -10350,7 +10350,7 @@ const delegatecallActivated = (options) => {
10350
10350
  viewBox="0 0 80 80"
10351
10351
  fill="none"
10352
10352
  xmlns="http://www.w3.org/2000/svg"
10353
- style=${o({
10353
+ style=${styleMap({
10354
10354
  width: `${options.width}px`,
10355
10355
  height: `${options.height}px`
10356
10356
  })}
@@ -10533,7 +10533,7 @@ const delegatecallInactive = (options) => {
10533
10533
  viewBox="0 0 80 80"
10534
10534
  fill="none"
10535
10535
  xmlns="http://www.w3.org/2000/svg"
10536
- style=${o({
10536
+ style=${styleMap({
10537
10537
  width: `${options.width}px`,
10538
10538
  height: `${options.height}px`
10539
10539
  })}
@@ -10661,7 +10661,7 @@ const deployActivated = (options) => {
10661
10661
  viewBox="0 0 80 80"
10662
10662
  fill="none"
10663
10663
  xmlns="http://www.w3.org/2000/svg"
10664
- style=${o({
10664
+ style=${styleMap({
10665
10665
  width: `${options.width}px`,
10666
10666
  height: `${options.height}px`
10667
10667
  })}
@@ -10769,7 +10769,7 @@ const deployInactive = (options) => {
10769
10769
  viewBox="0 0 80 80"
10770
10770
  fill="none"
10771
10771
  xmlns="http://www.w3.org/2000/svg"
10772
- style=${o({
10772
+ style=${styleMap({
10773
10773
  width: `${options.width}px`,
10774
10774
  height: `${options.height}px`
10775
10775
  })}
@@ -10802,7 +10802,7 @@ const editpermissionsActivated = (options) => {
10802
10802
  viewBox="0 0 80 80"
10803
10803
  fill="none"
10804
10804
  xmlns="http://www.w3.org/2000/svg"
10805
- style=${o({
10805
+ style=${styleMap({
10806
10806
  width: `${options.width}px`,
10807
10807
  height: `${options.height}px`
10808
10808
  })}
@@ -11047,7 +11047,7 @@ const editpermissionsInactive = (options) => {
11047
11047
  viewBox="0 0 80 80"
11048
11048
  fill="none"
11049
11049
  xmlns="http://www.w3.org/2000/svg"
11050
- style=${o({
11050
+ style=${styleMap({
11051
11051
  width: `${options.width}px`,
11052
11052
  height: `${options.height}px`
11053
11053
  })}
@@ -11237,7 +11237,7 @@ const encryptActivated = (options) => {
11237
11237
  viewBox="0 0 80 80"
11238
11238
  fill="none"
11239
11239
  xmlns="http://www.w3.org/2000/svg"
11240
- style=${o({
11240
+ style=${styleMap({
11241
11241
  width: `${options.width}px`,
11242
11242
  height: `${options.height}px`
11243
11243
  })}
@@ -11430,7 +11430,7 @@ const encryptInactive = (options) => {
11430
11430
  viewBox="0 0 80 80"
11431
11431
  fill="none"
11432
11432
  xmlns="http://www.w3.org/2000/svg"
11433
- style=${o({
11433
+ style=${styleMap({
11434
11434
  width: `${options.width}px`,
11435
11435
  height: `${options.height}px`
11436
11436
  })}
@@ -11586,7 +11586,7 @@ const executeRelayCallActivated = (options) => {
11586
11586
  viewBox="0 0 40 40"
11587
11587
  fill="none"
11588
11588
  xmlns="http://www.w3.org/2000/svg"
11589
- style=${o({
11589
+ style=${styleMap({
11590
11590
  width: `${options.width}px`,
11591
11591
  height: `${options.height}px`
11592
11592
  })}
@@ -11762,7 +11762,7 @@ const executeRelayCallInactive = (options) => {
11762
11762
  viewBox="0 0 40 40"
11763
11763
  fill="none"
11764
11764
  xmlns="http://www.w3.org/2000/svg"
11765
- style=${o({
11765
+ style=${styleMap({
11766
11766
  width: `${options.width}px`,
11767
11767
  height: `${options.height}px`
11768
11768
  })}
@@ -11872,7 +11872,7 @@ const reentrancyActivated = (options) => {
11872
11872
  viewBox="0 0 80 80"
11873
11873
  fill="none"
11874
11874
  xmlns="http://www.w3.org/2000/svg"
11875
- style=${o({
11875
+ style=${styleMap({
11876
11876
  width: `${options.width}px`,
11877
11877
  height: `${options.height}px`
11878
11878
  })}
@@ -12121,7 +12121,7 @@ const reentrancyInactive = (options) => {
12121
12121
  viewBox="0 0 80 80"
12122
12122
  fill="none"
12123
12123
  xmlns="http://www.w3.org/2000/svg"
12124
- style=${o({
12124
+ style=${styleMap({
12125
12125
  width: `${options.width}px`,
12126
12126
  height: `${options.height}px`
12127
12127
  })}
@@ -12315,7 +12315,7 @@ const setdataActivated = (options) => {
12315
12315
  viewBox="0 0 80 80"
12316
12316
  fill="none"
12317
12317
  xmlns="http://www.w3.org/2000/svg"
12318
- style=${o({
12318
+ style=${styleMap({
12319
12319
  width: `${options.width}px`,
12320
12320
  height: `${options.height}px`
12321
12321
  })}
@@ -12466,7 +12466,7 @@ const setdataInactive = (options) => {
12466
12466
  viewBox="0 0 80 80"
12467
12467
  fill="none"
12468
12468
  xmlns="http://www.w3.org/2000/svg"
12469
- style=${o({
12469
+ style=${styleMap({
12470
12470
  width: `${options.width}px`,
12471
12471
  height: `${options.height}px`
12472
12472
  })}
@@ -12548,7 +12548,7 @@ const signActivated = (options) => {
12548
12548
  viewBox="0 0 80 80"
12549
12549
  fill="none"
12550
12550
  xmlns="http://www.w3.org/2000/svg"
12551
- style=${o({
12551
+ style=${styleMap({
12552
12552
  width: `${options.width}px`,
12553
12553
  height: `${options.height}px`
12554
12554
  })}
@@ -12723,7 +12723,7 @@ const signInactive = (options) => {
12723
12723
  viewBox="0 0 80 80"
12724
12724
  fill="none"
12725
12725
  xmlns="http://www.w3.org/2000/svg"
12726
- style=${o({
12726
+ style=${styleMap({
12727
12727
  width: `${options.width}px`,
12728
12728
  height: `${options.height}px`
12729
12729
  })}
@@ -12861,7 +12861,7 @@ const transactionActivated = (options) => {
12861
12861
  viewBox="0 0 40 40"
12862
12862
  fill="none"
12863
12863
  xmlns="http://www.w3.org/2000/svg"
12864
- style=${o({
12864
+ style=${styleMap({
12865
12865
  width: `${options.width}px`,
12866
12866
  height: `${options.height}px`
12867
12867
  })}
@@ -12976,7 +12976,7 @@ const transferActivated = (options) => {
12976
12976
  viewBox="0 0 80 80"
12977
12977
  fill="none"
12978
12978
  xmlns="http://www.w3.org/2000/svg"
12979
- style=${o({
12979
+ style=${styleMap({
12980
12980
  width: `${options.width}px`,
12981
12981
  height: `${options.height}px`
12982
12982
  })}
@@ -13089,7 +13089,7 @@ const transferInactive = (options) => {
13089
13089
  viewBox="0 0 80 80"
13090
13090
  fill="none"
13091
13091
  xmlns="http://www.w3.org/2000/svg"
13092
- style=${o({
13092
+ style=${styleMap({
13093
13093
  width: `${options.width}px`,
13094
13094
  height: `${options.height}px`
13095
13095
  })}
@@ -13147,7 +13147,7 @@ const logoHyperlaneOutline = (options) => {
13147
13147
  viewBox="0 0 24 24"
13148
13148
  fill="none"
13149
13149
  xmlns="http://www.w3.org/2000/svg"
13150
- style=${o({
13150
+ style=${styleMap({
13151
13151
  width: `${options.width}px`,
13152
13152
  height: `${options.height}px`
13153
13153
  })}