lucide-solid 0.95.0 → 0.97.0
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.
- package/README.md +14 -12
- package/dist/cjs/lucide-solid.js +436 -3
- package/dist/cjs/lucide-solid.js.map +1 -1
- package/dist/esm/icons/bean-off.js +18 -0
- package/dist/esm/icons/bean.js +9 -0
- package/dist/esm/icons/candy-off.js +30 -0
- package/dist/esm/icons/candy.js +18 -0
- package/dist/esm/icons/check-check.js +9 -0
- package/dist/esm/icons/dna-off.js +39 -0
- package/dist/esm/icons/dna.js +36 -0
- package/dist/esm/icons/egg-off.js +15 -0
- package/dist/esm/icons/flask-conical-off.js +24 -0
- package/dist/esm/icons/flask-conical.js +2 -2
- package/dist/esm/icons/hop-off.js +30 -0
- package/dist/esm/icons/hop.js +27 -0
- package/dist/esm/icons/index.js +19 -0
- package/dist/esm/icons/milk-off.js +18 -0
- package/dist/esm/icons/milk.js +12 -0
- package/dist/esm/icons/nut-off.js +21 -0
- package/dist/esm/icons/nut.js +12 -0
- package/dist/esm/icons/vegan.js +12 -0
- package/dist/esm/icons/wheat-off.js +36 -0
- package/dist/esm/icons/wheat.js +27 -0
- package/dist/esm/icons/wine-off.js +21 -0
- package/dist/lucide-solid.d.ts +19 -0
- package/dist/umd/lucide-solid.js +436 -3
- package/dist/umd/lucide-solid.js.map +1 -1
- package/dist/umd/lucide-solid.min.js +2 -2
- package/dist/umd/lucide-solid.min.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,11 @@ Implementation of the lucide icon library for solid applications.
|
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
10
|
yarn add lucide-solid
|
|
11
|
+
```
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
or
|
|
13
14
|
|
|
15
|
+
```sh
|
|
14
16
|
npm install lucide-solid
|
|
15
17
|
```
|
|
16
18
|
|
|
@@ -23,13 +25,13 @@ Each icon can be imported as a solid component.
|
|
|
23
25
|
|
|
24
26
|
You can pass additional props to adjust the icon.
|
|
25
27
|
|
|
26
|
-
```
|
|
28
|
+
```js
|
|
27
29
|
import { Camera } from 'lucide-solid';
|
|
28
30
|
// Returns SolidComponent
|
|
29
31
|
|
|
30
32
|
// Usage
|
|
31
33
|
const App = () => {
|
|
32
|
-
return <Camera color="red" size={48}
|
|
34
|
+
return <Camera color="red" size={48} />;
|
|
33
35
|
};
|
|
34
36
|
|
|
35
37
|
export default App;
|
|
@@ -37,20 +39,20 @@ export default App;
|
|
|
37
39
|
|
|
38
40
|
### Props
|
|
39
41
|
|
|
40
|
-
|
|
|
41
|
-
|
|
|
42
|
-
| `size`
|
|
43
|
-
| `color`
|
|
44
|
-
| `strokeWidth
|
|
42
|
+
| name | type | default |
|
|
43
|
+
| ------------- | -------- | ------------ |
|
|
44
|
+
| `size` | _Number_ | 24 |
|
|
45
|
+
| `color` | _String_ | currentColor |
|
|
46
|
+
| `strokeWidth` | _Number_ | 2 |
|
|
45
47
|
|
|
46
48
|
### Custom props / svg attributes
|
|
47
49
|
|
|
48
50
|
You can also pass custom props that will be added in the as attributes. With that you can modify the icons look by passing svg attributes.
|
|
49
51
|
|
|
50
|
-
```
|
|
52
|
+
```js
|
|
51
53
|
// Usage
|
|
52
54
|
const App = () => {
|
|
53
|
-
return <Camera fill="red" stroke-linejoin="bevel"
|
|
55
|
+
return <Camera fill="red" stroke-linejoin="bevel" />;
|
|
54
56
|
};
|
|
55
57
|
```
|
|
56
58
|
|
|
@@ -58,11 +60,11 @@ const App = () => {
|
|
|
58
60
|
|
|
59
61
|
It is possible to create one generic icon component to load icons.
|
|
60
62
|
|
|
61
|
-
> :warning: Example below importing all EsModules, caution
|
|
63
|
+
> :warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
|
62
64
|
|
|
63
65
|
#### Icon Component Example
|
|
64
66
|
|
|
65
|
-
```
|
|
67
|
+
```tsx
|
|
66
68
|
import * as icons from 'lucide-solid';
|
|
67
69
|
import type { LucideProps } from 'lucide-solid';
|
|
68
70
|
import { splitProps } from 'solid-js';
|
package/dist/cjs/lucide-solid.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* lucide-solid v0.
|
|
2
|
+
* lucide-solid v0.97.0 - ISC
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
'use strict';
|
|
@@ -1624,6 +1624,33 @@ const Beaker = createSolidComponent('Beaker', [['path', {
|
|
|
1624
1624
|
}]]);
|
|
1625
1625
|
var Beaker$1 = Beaker;
|
|
1626
1626
|
|
|
1627
|
+
const BeanOff = createSolidComponent('BeanOff', [['path', {
|
|
1628
|
+
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',
|
|
1629
|
+
key: 'bq3udt'
|
|
1630
|
+
}], ['path', {
|
|
1631
|
+
d: 'M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66',
|
|
1632
|
+
key: '17ccse'
|
|
1633
|
+
}], ['path', {
|
|
1634
|
+
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',
|
|
1635
|
+
key: '18zqgq'
|
|
1636
|
+
}], ['line', {
|
|
1637
|
+
x1: '2',
|
|
1638
|
+
y1: '2',
|
|
1639
|
+
x2: '22',
|
|
1640
|
+
y2: '22',
|
|
1641
|
+
key: '1w4vcy'
|
|
1642
|
+
}]]);
|
|
1643
|
+
var BeanOff$1 = BeanOff;
|
|
1644
|
+
|
|
1645
|
+
const Bean = createSolidComponent('Bean', [['path', {
|
|
1646
|
+
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',
|
|
1647
|
+
key: '1tvzk7'
|
|
1648
|
+
}], ['path', {
|
|
1649
|
+
d: 'M5.341 10.62A4 4 0 1 0 10.62 5.34',
|
|
1650
|
+
key: '10iugy'
|
|
1651
|
+
}]]);
|
|
1652
|
+
var Bean$1 = Bean;
|
|
1653
|
+
|
|
1627
1654
|
const BedDouble = createSolidComponent('BedDouble', [['path', {
|
|
1628
1655
|
d: 'M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8',
|
|
1629
1656
|
key: '1k78r4'
|
|
@@ -2714,6 +2741,54 @@ const Camera = createSolidComponent('Camera', [['path', {
|
|
|
2714
2741
|
}]]);
|
|
2715
2742
|
var Camera$1 = Camera;
|
|
2716
2743
|
|
|
2744
|
+
const CandyOff = createSolidComponent('CandyOff', [['path', {
|
|
2745
|
+
d: 'm8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1',
|
|
2746
|
+
key: '1ff4ui'
|
|
2747
|
+
}], ['path', {
|
|
2748
|
+
d: 'M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657',
|
|
2749
|
+
key: '1sbrv4'
|
|
2750
|
+
}], ['path', {
|
|
2751
|
+
d: 'M14 16.5V14',
|
|
2752
|
+
key: '1maf8j'
|
|
2753
|
+
}], ['path', {
|
|
2754
|
+
d: 'M14 6.5v1.843',
|
|
2755
|
+
key: '1a6u6t'
|
|
2756
|
+
}], ['path', {
|
|
2757
|
+
d: 'M10 10v7.5',
|
|
2758
|
+
key: '80pj65'
|
|
2759
|
+
}], ['path', {
|
|
2760
|
+
d: 'm16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1',
|
|
2761
|
+
key: '11a9mt'
|
|
2762
|
+
}], ['path', {
|
|
2763
|
+
d: 'm8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1',
|
|
2764
|
+
key: '3mjmon'
|
|
2765
|
+
}], ['line', {
|
|
2766
|
+
x1: '2',
|
|
2767
|
+
y1: '2',
|
|
2768
|
+
x2: '22',
|
|
2769
|
+
y2: '22',
|
|
2770
|
+
key: '1w4vcy'
|
|
2771
|
+
}]]);
|
|
2772
|
+
var CandyOff$1 = CandyOff;
|
|
2773
|
+
|
|
2774
|
+
const Candy = createSolidComponent('Candy', [['path', {
|
|
2775
|
+
d: 'm9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z',
|
|
2776
|
+
key: 'ue6khb'
|
|
2777
|
+
}], ['path', {
|
|
2778
|
+
d: 'M14 6.5v10',
|
|
2779
|
+
key: '5xnk7c'
|
|
2780
|
+
}], ['path', {
|
|
2781
|
+
d: 'M10 7.5v10',
|
|
2782
|
+
key: '1uew51'
|
|
2783
|
+
}], ['path', {
|
|
2784
|
+
d: 'm16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1',
|
|
2785
|
+
key: 'b9cp6k'
|
|
2786
|
+
}], ['path', {
|
|
2787
|
+
d: 'm8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1',
|
|
2788
|
+
key: '5lney8'
|
|
2789
|
+
}]]);
|
|
2790
|
+
var Candy$1 = Candy;
|
|
2791
|
+
|
|
2717
2792
|
const Car = createSolidComponent('Car', [['path', {
|
|
2718
2793
|
d: 'M14 16H9m10 0h3v-3.15a1 1 0 0 0-.84-.99L16 11l-2.7-3.6a1 1 0 0 0-.8-.4H5.24a2 2 0 0 0-1.8 1.1l-.8 1.63A6 6 0 0 0 2 12.42V16h2',
|
|
2719
2794
|
key: 'l5np60'
|
|
@@ -2781,6 +2856,15 @@ const Cat = createSolidComponent('Cat', [['path', {
|
|
|
2781
2856
|
}]]);
|
|
2782
2857
|
var Cat$1 = Cat;
|
|
2783
2858
|
|
|
2859
|
+
const CheckCheck = createSolidComponent('CheckCheck', [['path', {
|
|
2860
|
+
d: 'M18 6 7 17l-5-5',
|
|
2861
|
+
key: '116fxf'
|
|
2862
|
+
}], ['path', {
|
|
2863
|
+
d: 'm22 10-7.5 7.5L13 16',
|
|
2864
|
+
key: 'ke71qq'
|
|
2865
|
+
}]]);
|
|
2866
|
+
var CheckCheck$1 = CheckCheck;
|
|
2867
|
+
|
|
2784
2868
|
const CheckCircle2 = createSolidComponent('CheckCircle2', [['path', {
|
|
2785
2869
|
d: 'M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z',
|
|
2786
2870
|
key: '14v8dr'
|
|
@@ -4595,6 +4679,81 @@ const Divide = createSolidComponent('Divide', [['circle', {
|
|
|
4595
4679
|
}]]);
|
|
4596
4680
|
var Divide$1 = Divide;
|
|
4597
4681
|
|
|
4682
|
+
const DnaOff = createSolidComponent('DnaOff', [['path', {
|
|
4683
|
+
d: 'M15 2c-1.35 1.5-2.092 3-2.5 4.5M9 22c1.35-1.5 2.092-3 2.5-4.5',
|
|
4684
|
+
key: 'sxiaad'
|
|
4685
|
+
}], ['path', {
|
|
4686
|
+
d: 'M2 15c3.333-3 6.667-3 10-3m10-3c-1.5 1.35-3 2.092-4.5 2.5',
|
|
4687
|
+
key: 'yn4bs1'
|
|
4688
|
+
}], ['path', {
|
|
4689
|
+
d: 'm17 6-2.5-2.5',
|
|
4690
|
+
key: '5cdfhj'
|
|
4691
|
+
}], ['path', {
|
|
4692
|
+
d: 'm14 8-1.5-1.5',
|
|
4693
|
+
key: '1ohn8i'
|
|
4694
|
+
}], ['path', {
|
|
4695
|
+
d: 'm7 18 2.5 2.5',
|
|
4696
|
+
key: '16tu1a'
|
|
4697
|
+
}], ['path', {
|
|
4698
|
+
d: 'm3.5 14.5.5.5',
|
|
4699
|
+
key: 'hapbhd'
|
|
4700
|
+
}], ['path', {
|
|
4701
|
+
d: 'm20 9 .5.5',
|
|
4702
|
+
key: '1n7z02'
|
|
4703
|
+
}], ['path', {
|
|
4704
|
+
d: 'm6.5 12.5 1 1',
|
|
4705
|
+
key: 'cs35ky'
|
|
4706
|
+
}], ['path', {
|
|
4707
|
+
d: 'm16.5 10.5 1 1',
|
|
4708
|
+
key: '696xn5'
|
|
4709
|
+
}], ['path', {
|
|
4710
|
+
d: 'm10 16 1.5 1.5',
|
|
4711
|
+
key: '11lckj'
|
|
4712
|
+
}], ['line', {
|
|
4713
|
+
x1: '2',
|
|
4714
|
+
y1: '2',
|
|
4715
|
+
x2: '22',
|
|
4716
|
+
y2: '22',
|
|
4717
|
+
key: '1w4vcy'
|
|
4718
|
+
}]]);
|
|
4719
|
+
var DnaOff$1 = DnaOff;
|
|
4720
|
+
|
|
4721
|
+
const Dna = createSolidComponent('Dna', [['path', {
|
|
4722
|
+
d: 'M2 15c6.667-6 13.333 0 20-6',
|
|
4723
|
+
key: '1pyr53'
|
|
4724
|
+
}], ['path', {
|
|
4725
|
+
d: 'M9 22c1.798-1.998 2.518-3.995 2.807-5.993',
|
|
4726
|
+
key: 'q3hbxp'
|
|
4727
|
+
}], ['path', {
|
|
4728
|
+
d: 'M15 2c-1.798 1.998-2.518 3.995-2.807 5.993',
|
|
4729
|
+
key: '80uv8i'
|
|
4730
|
+
}], ['path', {
|
|
4731
|
+
d: 'm17 6-2.5-2.5',
|
|
4732
|
+
key: '5cdfhj'
|
|
4733
|
+
}], ['path', {
|
|
4734
|
+
d: 'm14 8-1-1',
|
|
4735
|
+
key: '15nbz5'
|
|
4736
|
+
}], ['path', {
|
|
4737
|
+
d: 'm7 18 2.5 2.5',
|
|
4738
|
+
key: '16tu1a'
|
|
4739
|
+
}], ['path', {
|
|
4740
|
+
d: 'm3.5 14.5.5.5',
|
|
4741
|
+
key: 'hapbhd'
|
|
4742
|
+
}], ['path', {
|
|
4743
|
+
d: 'm20 9 .5.5',
|
|
4744
|
+
key: '1n7z02'
|
|
4745
|
+
}], ['path', {
|
|
4746
|
+
d: 'm6.5 12.5 1 1',
|
|
4747
|
+
key: 'cs35ky'
|
|
4748
|
+
}], ['path', {
|
|
4749
|
+
d: 'm16.5 10.5 1 1',
|
|
4750
|
+
key: '696xn5'
|
|
4751
|
+
}], ['path', {
|
|
4752
|
+
d: 'm10 16 1.5 1.5',
|
|
4753
|
+
key: '11lckj'
|
|
4754
|
+
}]]);
|
|
4755
|
+
var Dna$1 = Dna;
|
|
4756
|
+
|
|
4598
4757
|
const Dog = createSolidComponent('Dog', [['path', {
|
|
4599
4758
|
d: 'M10 5.172C10 3.782 8.423 2.679 6.5 3c-2.823.47-4.113 6.006-4 7 .08.703 1.725 1.722 3.656 1 1.261-.472 1.96-1.45 2.344-2.5',
|
|
4600
4759
|
key: '19br0u'
|
|
@@ -4761,6 +4920,21 @@ const EggFried = createSolidComponent('EggFried', [['circle', {
|
|
|
4761
4920
|
}]]);
|
|
4762
4921
|
var EggFried$1 = EggFried;
|
|
4763
4922
|
|
|
4923
|
+
const EggOff = createSolidComponent('EggOff', [['path', {
|
|
4924
|
+
d: 'M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625',
|
|
4925
|
+
key: '6et380'
|
|
4926
|
+
}], ['path', {
|
|
4927
|
+
d: 'M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297',
|
|
4928
|
+
key: 'gcdc3f'
|
|
4929
|
+
}], ['line', {
|
|
4930
|
+
x1: '2',
|
|
4931
|
+
y1: '2',
|
|
4932
|
+
x2: '22',
|
|
4933
|
+
y2: '22',
|
|
4934
|
+
key: '1w4vcy'
|
|
4935
|
+
}]]);
|
|
4936
|
+
var EggOff$1 = EggOff;
|
|
4937
|
+
|
|
4764
4938
|
const Egg = createSolidComponent('Egg', [['path', {
|
|
4765
4939
|
d: 'M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z',
|
|
4766
4940
|
key: '1c39pg'
|
|
@@ -6078,9 +6252,33 @@ const Flashlight = createSolidComponent('Flashlight', [['path', {
|
|
|
6078
6252
|
}]]);
|
|
6079
6253
|
var Flashlight$1 = Flashlight;
|
|
6080
6254
|
|
|
6255
|
+
const FlaskConicalOff = createSolidComponent('FlaskConicalOff', [['path', {
|
|
6256
|
+
d: 'M10 10 4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-1.272-2.542',
|
|
6257
|
+
key: '59ek9y'
|
|
6258
|
+
}], ['path', {
|
|
6259
|
+
d: 'M10 2v2.343',
|
|
6260
|
+
key: '15t272'
|
|
6261
|
+
}], ['path', {
|
|
6262
|
+
d: 'M14 2v6.343',
|
|
6263
|
+
key: 'sxr80q'
|
|
6264
|
+
}], ['path', {
|
|
6265
|
+
d: 'M8.5 2h7',
|
|
6266
|
+
key: 'csnxdl'
|
|
6267
|
+
}], ['path', {
|
|
6268
|
+
d: 'M7 16h9',
|
|
6269
|
+
key: 't5njau'
|
|
6270
|
+
}], ['line', {
|
|
6271
|
+
x1: '2',
|
|
6272
|
+
y1: '2',
|
|
6273
|
+
x2: '22',
|
|
6274
|
+
y2: '22',
|
|
6275
|
+
key: '1w4vcy'
|
|
6276
|
+
}]]);
|
|
6277
|
+
var FlaskConicalOff$1 = FlaskConicalOff;
|
|
6278
|
+
|
|
6081
6279
|
const FlaskConical = createSolidComponent('FlaskConical', [['path', {
|
|
6082
|
-
d: 'M10
|
|
6083
|
-
key: '
|
|
6280
|
+
d: 'M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2',
|
|
6281
|
+
key: 'pzvekw'
|
|
6084
6282
|
}], ['path', {
|
|
6085
6283
|
d: 'M8.5 2h7',
|
|
6086
6284
|
key: 'csnxdl'
|
|
@@ -7667,6 +7865,63 @@ const Home = createSolidComponent('Home', [['path', {
|
|
|
7667
7865
|
}]]);
|
|
7668
7866
|
var Home$1 = Home;
|
|
7669
7867
|
|
|
7868
|
+
const HopOff = createSolidComponent('HopOff', [['path', {
|
|
7869
|
+
d: 'M17.5 5.5C19 7 20.5 9 21 11c-1.323.265-2.646.39-4.118.226',
|
|
7870
|
+
key: '10j95a'
|
|
7871
|
+
}], ['path', {
|
|
7872
|
+
d: 'M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5',
|
|
7873
|
+
key: '1mqyjd'
|
|
7874
|
+
}], ['path', {
|
|
7875
|
+
d: 'M17.5 17.5c-2.5 0-4 0-6-1',
|
|
7876
|
+
key: '11elt5'
|
|
7877
|
+
}], ['path', {
|
|
7878
|
+
d: 'M20 11.5c1 1.5 2 3.5 2 4.5',
|
|
7879
|
+
key: '13ezvz'
|
|
7880
|
+
}], ['path', {
|
|
7881
|
+
d: 'M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5',
|
|
7882
|
+
key: '1ufrz1'
|
|
7883
|
+
}], ['path', {
|
|
7884
|
+
d: 'M22 22c-2 0-3.5-.5-5.5-1.5',
|
|
7885
|
+
key: '1n8vbj'
|
|
7886
|
+
}], ['path', {
|
|
7887
|
+
d: 'M4.783 4.782C1.073 8.492 1 14.5 5 18c1-1 2-4.5 1.5-6.5 1.5 1 4 1 5.5.5M8.227 2.57C11.578 1.335 15.453 2.089 18 5c-.88.88-3.7 1.761-5.726 1.618',
|
|
7888
|
+
key: '1h85u8'
|
|
7889
|
+
}], ['line', {
|
|
7890
|
+
x1: '2',
|
|
7891
|
+
y1: '2',
|
|
7892
|
+
x2: '22',
|
|
7893
|
+
y2: '22',
|
|
7894
|
+
key: '1w4vcy'
|
|
7895
|
+
}]]);
|
|
7896
|
+
var HopOff$1 = HopOff;
|
|
7897
|
+
|
|
7898
|
+
const Hop = createSolidComponent('Hop', [['path', {
|
|
7899
|
+
d: 'M17.5 5.5C19 7 20.5 9 21 11c-2.5.5-5 .5-8.5-1',
|
|
7900
|
+
key: 'l0z2za'
|
|
7901
|
+
}], ['path', {
|
|
7902
|
+
d: 'M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5',
|
|
7903
|
+
key: '1mqyjd'
|
|
7904
|
+
}], ['path', {
|
|
7905
|
+
d: 'M16.5 11.5c1 2 1 3.5 1 6-2.5 0-4 0-6-1',
|
|
7906
|
+
key: '10xoad'
|
|
7907
|
+
}], ['path', {
|
|
7908
|
+
d: 'M20 11.5c1 1.5 2 3.5 2 4.5-1.5.5-3 0-4.5-.5',
|
|
7909
|
+
key: '1a4gpx'
|
|
7910
|
+
}], ['path', {
|
|
7911
|
+
d: 'M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5',
|
|
7912
|
+
key: '1ufrz1'
|
|
7913
|
+
}], ['path', {
|
|
7914
|
+
d: 'M20.5 16.5c1 2 1.5 3.5 1.5 5.5-2 0-3.5-.5-5.5-1.5',
|
|
7915
|
+
key: '1ok5d2'
|
|
7916
|
+
}], ['path', {
|
|
7917
|
+
d: 'M4.783 4.782C8.493 1.072 14.5 1 18 5c-1 1-4.5 2-6.5 1.5 1 1.5 1 4 .5 5.5-1.5.5-4 .5-5.5-.5C7 13.5 6 17 5 18c-4-3.5-3.927-9.508-.217-13.218Z',
|
|
7918
|
+
key: '8hlroy'
|
|
7919
|
+
}], ['path', {
|
|
7920
|
+
d: 'M4.5 4.5 3 3c-.184-.185-.184-.816 0-1',
|
|
7921
|
+
key: 'q3aj97'
|
|
7922
|
+
}]]);
|
|
7923
|
+
var Hop$1 = Hop;
|
|
7924
|
+
|
|
7670
7925
|
const Hourglass = createSolidComponent('Hourglass', [['path', {
|
|
7671
7926
|
d: 'M5 22h14',
|
|
7672
7927
|
key: 'ehvnwv'
|
|
@@ -9443,6 +9698,36 @@ const Milestone = createSolidComponent('Milestone', [['path', {
|
|
|
9443
9698
|
}]]);
|
|
9444
9699
|
var Milestone$1 = Milestone;
|
|
9445
9700
|
|
|
9701
|
+
const MilkOff = createSolidComponent('MilkOff', [['path', {
|
|
9702
|
+
d: 'M8 2h8',
|
|
9703
|
+
key: '1ssgc1'
|
|
9704
|
+
}], ['path', {
|
|
9705
|
+
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',
|
|
9706
|
+
key: 'y0ejgx'
|
|
9707
|
+
}], ['path', {
|
|
9708
|
+
d: 'M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435',
|
|
9709
|
+
key: 'iaxqsy'
|
|
9710
|
+
}], ['line', {
|
|
9711
|
+
x1: '2',
|
|
9712
|
+
y1: '2',
|
|
9713
|
+
x2: '22',
|
|
9714
|
+
y2: '22',
|
|
9715
|
+
key: '1w4vcy'
|
|
9716
|
+
}]]);
|
|
9717
|
+
var MilkOff$1 = MilkOff;
|
|
9718
|
+
|
|
9719
|
+
const Milk = createSolidComponent('Milk', [['path', {
|
|
9720
|
+
d: 'M8 2h8',
|
|
9721
|
+
key: '1ssgc1'
|
|
9722
|
+
}], ['path', {
|
|
9723
|
+
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',
|
|
9724
|
+
key: 'qtp12x'
|
|
9725
|
+
}], ['path', {
|
|
9726
|
+
d: 'M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0',
|
|
9727
|
+
key: 'ygeh44'
|
|
9728
|
+
}]]);
|
|
9729
|
+
var Milk$1 = Milk;
|
|
9730
|
+
|
|
9446
9731
|
const Minimize2 = createSolidComponent('Minimize2', [['polyline', {
|
|
9447
9732
|
points: '4 14 10 14 10 20',
|
|
9448
9733
|
key: '11kfnr'
|
|
@@ -9924,6 +10209,39 @@ const Newspaper = createSolidComponent('Newspaper', [['path', {
|
|
|
9924
10209
|
}]]);
|
|
9925
10210
|
var Newspaper$1 = Newspaper;
|
|
9926
10211
|
|
|
10212
|
+
const NutOff = createSolidComponent('NutOff', [['path', {
|
|
10213
|
+
d: 'M12 4V2',
|
|
10214
|
+
key: '1k5q1u'
|
|
10215
|
+
}], ['path', {
|
|
10216
|
+
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',
|
|
10217
|
+
key: '1xcvy9'
|
|
10218
|
+
}], ['path', {
|
|
10219
|
+
d: 'M19 10v3.343',
|
|
10220
|
+
key: '163tfc'
|
|
10221
|
+
}], ['path', {
|
|
10222
|
+
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',
|
|
10223
|
+
key: '17914v'
|
|
10224
|
+
}], ['line', {
|
|
10225
|
+
x1: '2',
|
|
10226
|
+
y1: '2',
|
|
10227
|
+
x2: '22',
|
|
10228
|
+
y2: '22',
|
|
10229
|
+
key: '1w4vcy'
|
|
10230
|
+
}]]);
|
|
10231
|
+
var NutOff$1 = NutOff;
|
|
10232
|
+
|
|
10233
|
+
const Nut = createSolidComponent('Nut', [['path', {
|
|
10234
|
+
d: 'M12 4V2',
|
|
10235
|
+
key: '1k5q1u'
|
|
10236
|
+
}], ['path', {
|
|
10237
|
+
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',
|
|
10238
|
+
key: '1tgyif'
|
|
10239
|
+
}], ['path', {
|
|
10240
|
+
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',
|
|
10241
|
+
key: 'tnsqj'
|
|
10242
|
+
}]]);
|
|
10243
|
+
var Nut$1 = Nut;
|
|
10244
|
+
|
|
9927
10245
|
const Octagon = createSolidComponent('Octagon', [['polygon', {
|
|
9928
10246
|
points: '7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2',
|
|
9929
10247
|
key: 'h1p8hx'
|
|
@@ -13878,6 +14196,18 @@ const Utensils = createSolidComponent('Utensils', [['path', {
|
|
|
13878
14196
|
}]]);
|
|
13879
14197
|
var Utensils$1 = Utensils;
|
|
13880
14198
|
|
|
14199
|
+
const Vegan = createSolidComponent('Vegan', [['path', {
|
|
14200
|
+
d: 'M2 2c4.056 3.007 9.232 9.337 10 20 .897-6.818 1.5-9.5 4-14',
|
|
14201
|
+
key: 'eao96d'
|
|
14202
|
+
}], ['path', {
|
|
14203
|
+
d: 'M20.375 6.533A9.953 9.953 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2c2.003 0 3.869.589 5.433 1.603',
|
|
14204
|
+
key: 'fbotu5'
|
|
14205
|
+
}], ['path', {
|
|
14206
|
+
d: 'M17.104 4c-1.002 1.274-1.146 2.586-1.1 4 1.9-.1 3.003-.201 4.3-1.4 1.406-1.3 1.6-2.3 1.7-4.6-2.7.1-3.623.375-4.9 2Z',
|
|
14207
|
+
key: '14agoq'
|
|
14208
|
+
}]]);
|
|
14209
|
+
var Vegan$1 = Vegan;
|
|
14210
|
+
|
|
13881
14211
|
const VenetianMask = createSolidComponent('VenetianMask', [['path', {
|
|
13882
14212
|
d: 'M2 12a5 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-5V7h-5a8 8 0 0 0-5 2 8 8 0 0 0-5-2H2Z',
|
|
13883
14213
|
key: '1g6z3j'
|
|
@@ -14173,6 +14503,69 @@ const Webhook = createSolidComponent('Webhook', [['path', {
|
|
|
14173
14503
|
}]]);
|
|
14174
14504
|
var Webhook$1 = Webhook;
|
|
14175
14505
|
|
|
14506
|
+
const WheatOff = createSolidComponent('WheatOff', [['path', {
|
|
14507
|
+
d: 'm2 22 10-10',
|
|
14508
|
+
key: '28ilpk'
|
|
14509
|
+
}], ['path', {
|
|
14510
|
+
d: 'm16 8-1.17 1.17',
|
|
14511
|
+
key: '1qqm82'
|
|
14512
|
+
}], ['path', {
|
|
14513
|
+
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',
|
|
14514
|
+
key: '1rdhi6'
|
|
14515
|
+
}], ['path', {
|
|
14516
|
+
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',
|
|
14517
|
+
key: '4wz8re'
|
|
14518
|
+
}], ['path', {
|
|
14519
|
+
d: 'M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62',
|
|
14520
|
+
key: 'rves66'
|
|
14521
|
+
}], ['path', {
|
|
14522
|
+
d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z',
|
|
14523
|
+
key: '19rau1'
|
|
14524
|
+
}], ['path', {
|
|
14525
|
+
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',
|
|
14526
|
+
key: 'tc8ph9'
|
|
14527
|
+
}], ['path', {
|
|
14528
|
+
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',
|
|
14529
|
+
key: 'ak46r'
|
|
14530
|
+
}], ['path', {
|
|
14531
|
+
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',
|
|
14532
|
+
key: '1tw520'
|
|
14533
|
+
}], ['line', {
|
|
14534
|
+
x1: '2',
|
|
14535
|
+
y1: '2',
|
|
14536
|
+
x2: '22',
|
|
14537
|
+
y2: '22',
|
|
14538
|
+
key: '1w4vcy'
|
|
14539
|
+
}]]);
|
|
14540
|
+
var WheatOff$1 = WheatOff;
|
|
14541
|
+
|
|
14542
|
+
const Wheat = createSolidComponent('Wheat', [['path', {
|
|
14543
|
+
d: 'M2 22 16 8',
|
|
14544
|
+
key: '60hf96'
|
|
14545
|
+
}], ['path', {
|
|
14546
|
+
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',
|
|
14547
|
+
key: '1rdhi6'
|
|
14548
|
+
}], ['path', {
|
|
14549
|
+
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',
|
|
14550
|
+
key: '1sdzmb'
|
|
14551
|
+
}], ['path', {
|
|
14552
|
+
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',
|
|
14553
|
+
key: 'eoatbi'
|
|
14554
|
+
}], ['path', {
|
|
14555
|
+
d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z',
|
|
14556
|
+
key: '19rau1'
|
|
14557
|
+
}], ['path', {
|
|
14558
|
+
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',
|
|
14559
|
+
key: 'tc8ph9'
|
|
14560
|
+
}], ['path', {
|
|
14561
|
+
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',
|
|
14562
|
+
key: '2m8kc5'
|
|
14563
|
+
}], ['path', {
|
|
14564
|
+
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',
|
|
14565
|
+
key: 'vex3ng'
|
|
14566
|
+
}]]);
|
|
14567
|
+
var Wheat$1 = Wheat;
|
|
14568
|
+
|
|
14176
14569
|
const WifiOff = createSolidComponent('WifiOff', [['line', {
|
|
14177
14570
|
x1: '2',
|
|
14178
14571
|
y1: '2',
|
|
@@ -14233,6 +14626,27 @@ const Wind = createSolidComponent('Wind', [['path', {
|
|
|
14233
14626
|
}]]);
|
|
14234
14627
|
var Wind$1 = Wind;
|
|
14235
14628
|
|
|
14629
|
+
const WineOff = createSolidComponent('WineOff', [['path', {
|
|
14630
|
+
d: 'M8 22h8',
|
|
14631
|
+
key: 'rmew8v'
|
|
14632
|
+
}], ['path', {
|
|
14633
|
+
d: 'M7 10h3m7 0h-1.343',
|
|
14634
|
+
key: 'v48bem'
|
|
14635
|
+
}], ['path', {
|
|
14636
|
+
d: 'M12 15v7',
|
|
14637
|
+
key: 't2xh3l'
|
|
14638
|
+
}], ['path', {
|
|
14639
|
+
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',
|
|
14640
|
+
key: '1ymjlu'
|
|
14641
|
+
}], ['line', {
|
|
14642
|
+
x1: '2',
|
|
14643
|
+
y1: '2',
|
|
14644
|
+
x2: '22',
|
|
14645
|
+
y2: '22',
|
|
14646
|
+
key: '1w4vcy'
|
|
14647
|
+
}]]);
|
|
14648
|
+
var WineOff$1 = WineOff;
|
|
14649
|
+
|
|
14236
14650
|
const Wine = createSolidComponent('Wine', [['path', {
|
|
14237
14651
|
d: 'M8 22h8',
|
|
14238
14652
|
key: 'rmew8v'
|
|
@@ -14518,6 +14932,8 @@ exports.BatteryFull = BatteryFull$1;
|
|
|
14518
14932
|
exports.BatteryLow = BatteryLow$1;
|
|
14519
14933
|
exports.BatteryMedium = BatteryMedium$1;
|
|
14520
14934
|
exports.Beaker = Beaker$1;
|
|
14935
|
+
exports.Bean = Bean$1;
|
|
14936
|
+
exports.BeanOff = BeanOff$1;
|
|
14521
14937
|
exports.Bed = Bed$1;
|
|
14522
14938
|
exports.BedDouble = BedDouble$1;
|
|
14523
14939
|
exports.BedSingle = BedSingle$1;
|
|
@@ -14570,11 +14986,14 @@ exports.CalendarX = CalendarX$1;
|
|
|
14570
14986
|
exports.CalendarX2 = CalendarX2$1;
|
|
14571
14987
|
exports.Camera = Camera$1;
|
|
14572
14988
|
exports.CameraOff = CameraOff$1;
|
|
14989
|
+
exports.Candy = Candy$1;
|
|
14990
|
+
exports.CandyOff = CandyOff$1;
|
|
14573
14991
|
exports.Car = Car$1;
|
|
14574
14992
|
exports.Carrot = Carrot$1;
|
|
14575
14993
|
exports.Cast = Cast$1;
|
|
14576
14994
|
exports.Cat = Cat$1;
|
|
14577
14995
|
exports.Check = Check$1;
|
|
14996
|
+
exports.CheckCheck = CheckCheck$1;
|
|
14578
14997
|
exports.CheckCircle = CheckCircle$1;
|
|
14579
14998
|
exports.CheckCircle2 = CheckCircle2$1;
|
|
14580
14999
|
exports.CheckSquare = CheckSquare$1;
|
|
@@ -14691,6 +15110,8 @@ exports.Disc = Disc$1;
|
|
|
14691
15110
|
exports.Divide = Divide$1;
|
|
14692
15111
|
exports.DivideCircle = DivideCircle$1;
|
|
14693
15112
|
exports.DivideSquare = DivideSquare$1;
|
|
15113
|
+
exports.Dna = Dna$1;
|
|
15114
|
+
exports.DnaOff = DnaOff$1;
|
|
14694
15115
|
exports.Dog = Dog$1;
|
|
14695
15116
|
exports.DollarSign = DollarSign$1;
|
|
14696
15117
|
exports.Download = Download$1;
|
|
@@ -14706,6 +15127,7 @@ exports.Edit2 = Edit2$1;
|
|
|
14706
15127
|
exports.Edit3 = Edit3$1;
|
|
14707
15128
|
exports.Egg = Egg$1;
|
|
14708
15129
|
exports.EggFried = EggFried$1;
|
|
15130
|
+
exports.EggOff = EggOff$1;
|
|
14709
15131
|
exports.Equal = Equal$1;
|
|
14710
15132
|
exports.EqualNot = EqualNot$1;
|
|
14711
15133
|
exports.Eraser = Eraser$1;
|
|
@@ -14787,6 +15209,7 @@ exports.Flame = Flame$1;
|
|
|
14787
15209
|
exports.Flashlight = Flashlight$1;
|
|
14788
15210
|
exports.FlashlightOff = FlashlightOff$1;
|
|
14789
15211
|
exports.FlaskConical = FlaskConical$1;
|
|
15212
|
+
exports.FlaskConicalOff = FlaskConicalOff$1;
|
|
14790
15213
|
exports.FlaskRound = FlaskRound$1;
|
|
14791
15214
|
exports.FlipHorizontal = FlipHorizontal$1;
|
|
14792
15215
|
exports.FlipHorizontal2 = FlipHorizontal2$1;
|
|
@@ -14879,6 +15302,8 @@ exports.Hexagon = Hexagon$1;
|
|
|
14879
15302
|
exports.Highlighter = Highlighter$1;
|
|
14880
15303
|
exports.History = History$1;
|
|
14881
15304
|
exports.Home = Home$1;
|
|
15305
|
+
exports.Hop = Hop$1;
|
|
15306
|
+
exports.HopOff = HopOff$1;
|
|
14882
15307
|
exports.Hourglass = Hourglass$1;
|
|
14883
15308
|
exports.IceCream = IceCream$1;
|
|
14884
15309
|
exports.Image = Image$1;
|
|
@@ -14976,6 +15401,8 @@ exports.MicOff = MicOff$1;
|
|
|
14976
15401
|
exports.Microscope = Microscope$1;
|
|
14977
15402
|
exports.Microwave = Microwave$1;
|
|
14978
15403
|
exports.Milestone = Milestone$1;
|
|
15404
|
+
exports.Milk = Milk$1;
|
|
15405
|
+
exports.MilkOff = MilkOff$1;
|
|
14979
15406
|
exports.Minimize = Minimize$1;
|
|
14980
15407
|
exports.Minimize2 = Minimize2$1;
|
|
14981
15408
|
exports.Minus = Minus$1;
|
|
@@ -15009,6 +15436,8 @@ exports.Navigation2Off = Navigation2Off$1;
|
|
|
15009
15436
|
exports.NavigationOff = NavigationOff$1;
|
|
15010
15437
|
exports.Network = Network$1;
|
|
15011
15438
|
exports.Newspaper = Newspaper$1;
|
|
15439
|
+
exports.Nut = Nut$1;
|
|
15440
|
+
exports.NutOff = NutOff$1;
|
|
15012
15441
|
exports.Octagon = Octagon$1;
|
|
15013
15442
|
exports.Option = Option$1;
|
|
15014
15443
|
exports.Outdent = Outdent$1;
|
|
@@ -15242,6 +15671,7 @@ exports.UserX = UserX$1;
|
|
|
15242
15671
|
exports.Users = Users$1;
|
|
15243
15672
|
exports.Utensils = Utensils$1;
|
|
15244
15673
|
exports.UtensilsCrossed = UtensilsCrossed$1;
|
|
15674
|
+
exports.Vegan = Vegan$1;
|
|
15245
15675
|
exports.VenetianMask = VenetianMask$1;
|
|
15246
15676
|
exports.Verified = Verified$1;
|
|
15247
15677
|
exports.Vibrate = Vibrate$1;
|
|
@@ -15261,10 +15691,13 @@ exports.Watch = Watch$1;
|
|
|
15261
15691
|
exports.Waves = Waves$1;
|
|
15262
15692
|
exports.Webcam = Webcam$1;
|
|
15263
15693
|
exports.Webhook = Webhook$1;
|
|
15694
|
+
exports.Wheat = Wheat$1;
|
|
15695
|
+
exports.WheatOff = WheatOff$1;
|
|
15264
15696
|
exports.Wifi = Wifi$1;
|
|
15265
15697
|
exports.WifiOff = WifiOff$1;
|
|
15266
15698
|
exports.Wind = Wind$1;
|
|
15267
15699
|
exports.Wine = Wine$1;
|
|
15700
|
+
exports.WineOff = WineOff$1;
|
|
15268
15701
|
exports.WrapText = WrapText$1;
|
|
15269
15702
|
exports.Wrench = Wrench$1;
|
|
15270
15703
|
exports.X = X$1;
|