lucide-preact 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 +16 -14
- package/dist/cjs/lucide-preact.js +436 -3
- package/dist/cjs/lucide-preact.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-preact.d.ts +19 -0
- package/dist/umd/lucide-preact.js +436 -3
- package/dist/umd/lucide-preact.js.map +1 -1
- package/dist/umd/lucide-preact.min.js +2 -2
- package/dist/umd/lucide-preact.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 preact applications.
|
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
10
|
yarn add lucide-preact
|
|
11
|
+
```
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
or
|
|
13
14
|
|
|
15
|
+
```sh
|
|
14
16
|
npm install lucide-preact
|
|
15
17
|
```
|
|
16
18
|
|
|
@@ -23,13 +25,13 @@ Each icon can be imported as a preact 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-preact';
|
|
28
30
|
// Returns PreactComponent
|
|
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
|
|
|
@@ -60,17 +62,17 @@ const App = () => {
|
|
|
60
62
|
|
|
61
63
|
It is possible to create one generic icon component to load icons.
|
|
62
64
|
|
|
63
|
-
> :warning: Example below importing all EsModules, caution
|
|
65
|
+
> :warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
|
64
66
|
|
|
65
67
|
#### Icon Component Example
|
|
66
68
|
|
|
67
|
-
```
|
|
69
|
+
```js
|
|
68
70
|
import * as icons from 'lucide-preact';
|
|
69
71
|
|
|
70
|
-
const Icon = ({name, color, size}) => {
|
|
72
|
+
const Icon = ({ name, color, size }) => {
|
|
71
73
|
const LucideIcon = icons[name];
|
|
72
74
|
|
|
73
|
-
return <LucideIcon color={color} size={size}
|
|
75
|
+
return <LucideIcon color={color} size={size} />;
|
|
74
76
|
};
|
|
75
77
|
|
|
76
78
|
export default Icon;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* lucide-preact v0.
|
|
2
|
+
* lucide-preact v0.97.0 - ISC
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
'use strict';
|
|
@@ -1622,6 +1622,33 @@ const Beaker = createPreactComponent('Beaker', [['path', {
|
|
|
1622
1622
|
}]]);
|
|
1623
1623
|
var Beaker$1 = Beaker;
|
|
1624
1624
|
|
|
1625
|
+
const BeanOff = createPreactComponent('BeanOff', [['path', {
|
|
1626
|
+
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',
|
|
1627
|
+
key: 'bq3udt'
|
|
1628
|
+
}], ['path', {
|
|
1629
|
+
d: 'M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66',
|
|
1630
|
+
key: '17ccse'
|
|
1631
|
+
}], ['path', {
|
|
1632
|
+
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',
|
|
1633
|
+
key: '18zqgq'
|
|
1634
|
+
}], ['line', {
|
|
1635
|
+
x1: '2',
|
|
1636
|
+
y1: '2',
|
|
1637
|
+
x2: '22',
|
|
1638
|
+
y2: '22',
|
|
1639
|
+
key: '1w4vcy'
|
|
1640
|
+
}]]);
|
|
1641
|
+
var BeanOff$1 = BeanOff;
|
|
1642
|
+
|
|
1643
|
+
const Bean = createPreactComponent('Bean', [['path', {
|
|
1644
|
+
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',
|
|
1645
|
+
key: '1tvzk7'
|
|
1646
|
+
}], ['path', {
|
|
1647
|
+
d: 'M5.341 10.62A4 4 0 1 0 10.62 5.34',
|
|
1648
|
+
key: '10iugy'
|
|
1649
|
+
}]]);
|
|
1650
|
+
var Bean$1 = Bean;
|
|
1651
|
+
|
|
1625
1652
|
const BedDouble = createPreactComponent('BedDouble', [['path', {
|
|
1626
1653
|
d: 'M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8',
|
|
1627
1654
|
key: '1k78r4'
|
|
@@ -2712,6 +2739,54 @@ const Camera = createPreactComponent('Camera', [['path', {
|
|
|
2712
2739
|
}]]);
|
|
2713
2740
|
var Camera$1 = Camera;
|
|
2714
2741
|
|
|
2742
|
+
const CandyOff = createPreactComponent('CandyOff', [['path', {
|
|
2743
|
+
d: 'm8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1',
|
|
2744
|
+
key: '1ff4ui'
|
|
2745
|
+
}], ['path', {
|
|
2746
|
+
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',
|
|
2747
|
+
key: '1sbrv4'
|
|
2748
|
+
}], ['path', {
|
|
2749
|
+
d: 'M14 16.5V14',
|
|
2750
|
+
key: '1maf8j'
|
|
2751
|
+
}], ['path', {
|
|
2752
|
+
d: 'M14 6.5v1.843',
|
|
2753
|
+
key: '1a6u6t'
|
|
2754
|
+
}], ['path', {
|
|
2755
|
+
d: 'M10 10v7.5',
|
|
2756
|
+
key: '80pj65'
|
|
2757
|
+
}], ['path', {
|
|
2758
|
+
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',
|
|
2759
|
+
key: '11a9mt'
|
|
2760
|
+
}], ['path', {
|
|
2761
|
+
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',
|
|
2762
|
+
key: '3mjmon'
|
|
2763
|
+
}], ['line', {
|
|
2764
|
+
x1: '2',
|
|
2765
|
+
y1: '2',
|
|
2766
|
+
x2: '22',
|
|
2767
|
+
y2: '22',
|
|
2768
|
+
key: '1w4vcy'
|
|
2769
|
+
}]]);
|
|
2770
|
+
var CandyOff$1 = CandyOff;
|
|
2771
|
+
|
|
2772
|
+
const Candy = createPreactComponent('Candy', [['path', {
|
|
2773
|
+
d: 'm9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z',
|
|
2774
|
+
key: 'ue6khb'
|
|
2775
|
+
}], ['path', {
|
|
2776
|
+
d: 'M14 6.5v10',
|
|
2777
|
+
key: '5xnk7c'
|
|
2778
|
+
}], ['path', {
|
|
2779
|
+
d: 'M10 7.5v10',
|
|
2780
|
+
key: '1uew51'
|
|
2781
|
+
}], ['path', {
|
|
2782
|
+
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',
|
|
2783
|
+
key: 'b9cp6k'
|
|
2784
|
+
}], ['path', {
|
|
2785
|
+
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',
|
|
2786
|
+
key: '5lney8'
|
|
2787
|
+
}]]);
|
|
2788
|
+
var Candy$1 = Candy;
|
|
2789
|
+
|
|
2715
2790
|
const Car = createPreactComponent('Car', [['path', {
|
|
2716
2791
|
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',
|
|
2717
2792
|
key: 'l5np60'
|
|
@@ -2779,6 +2854,15 @@ const Cat = createPreactComponent('Cat', [['path', {
|
|
|
2779
2854
|
}]]);
|
|
2780
2855
|
var Cat$1 = Cat;
|
|
2781
2856
|
|
|
2857
|
+
const CheckCheck = createPreactComponent('CheckCheck', [['path', {
|
|
2858
|
+
d: 'M18 6 7 17l-5-5',
|
|
2859
|
+
key: '116fxf'
|
|
2860
|
+
}], ['path', {
|
|
2861
|
+
d: 'm22 10-7.5 7.5L13 16',
|
|
2862
|
+
key: 'ke71qq'
|
|
2863
|
+
}]]);
|
|
2864
|
+
var CheckCheck$1 = CheckCheck;
|
|
2865
|
+
|
|
2782
2866
|
const CheckCircle2 = createPreactComponent('CheckCircle2', [['path', {
|
|
2783
2867
|
d: 'M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z',
|
|
2784
2868
|
key: '14v8dr'
|
|
@@ -4593,6 +4677,81 @@ const Divide = createPreactComponent('Divide', [['circle', {
|
|
|
4593
4677
|
}]]);
|
|
4594
4678
|
var Divide$1 = Divide;
|
|
4595
4679
|
|
|
4680
|
+
const DnaOff = createPreactComponent('DnaOff', [['path', {
|
|
4681
|
+
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',
|
|
4682
|
+
key: 'sxiaad'
|
|
4683
|
+
}], ['path', {
|
|
4684
|
+
d: 'M2 15c3.333-3 6.667-3 10-3m10-3c-1.5 1.35-3 2.092-4.5 2.5',
|
|
4685
|
+
key: 'yn4bs1'
|
|
4686
|
+
}], ['path', {
|
|
4687
|
+
d: 'm17 6-2.5-2.5',
|
|
4688
|
+
key: '5cdfhj'
|
|
4689
|
+
}], ['path', {
|
|
4690
|
+
d: 'm14 8-1.5-1.5',
|
|
4691
|
+
key: '1ohn8i'
|
|
4692
|
+
}], ['path', {
|
|
4693
|
+
d: 'm7 18 2.5 2.5',
|
|
4694
|
+
key: '16tu1a'
|
|
4695
|
+
}], ['path', {
|
|
4696
|
+
d: 'm3.5 14.5.5.5',
|
|
4697
|
+
key: 'hapbhd'
|
|
4698
|
+
}], ['path', {
|
|
4699
|
+
d: 'm20 9 .5.5',
|
|
4700
|
+
key: '1n7z02'
|
|
4701
|
+
}], ['path', {
|
|
4702
|
+
d: 'm6.5 12.5 1 1',
|
|
4703
|
+
key: 'cs35ky'
|
|
4704
|
+
}], ['path', {
|
|
4705
|
+
d: 'm16.5 10.5 1 1',
|
|
4706
|
+
key: '696xn5'
|
|
4707
|
+
}], ['path', {
|
|
4708
|
+
d: 'm10 16 1.5 1.5',
|
|
4709
|
+
key: '11lckj'
|
|
4710
|
+
}], ['line', {
|
|
4711
|
+
x1: '2',
|
|
4712
|
+
y1: '2',
|
|
4713
|
+
x2: '22',
|
|
4714
|
+
y2: '22',
|
|
4715
|
+
key: '1w4vcy'
|
|
4716
|
+
}]]);
|
|
4717
|
+
var DnaOff$1 = DnaOff;
|
|
4718
|
+
|
|
4719
|
+
const Dna = createPreactComponent('Dna', [['path', {
|
|
4720
|
+
d: 'M2 15c6.667-6 13.333 0 20-6',
|
|
4721
|
+
key: '1pyr53'
|
|
4722
|
+
}], ['path', {
|
|
4723
|
+
d: 'M9 22c1.798-1.998 2.518-3.995 2.807-5.993',
|
|
4724
|
+
key: 'q3hbxp'
|
|
4725
|
+
}], ['path', {
|
|
4726
|
+
d: 'M15 2c-1.798 1.998-2.518 3.995-2.807 5.993',
|
|
4727
|
+
key: '80uv8i'
|
|
4728
|
+
}], ['path', {
|
|
4729
|
+
d: 'm17 6-2.5-2.5',
|
|
4730
|
+
key: '5cdfhj'
|
|
4731
|
+
}], ['path', {
|
|
4732
|
+
d: 'm14 8-1-1',
|
|
4733
|
+
key: '15nbz5'
|
|
4734
|
+
}], ['path', {
|
|
4735
|
+
d: 'm7 18 2.5 2.5',
|
|
4736
|
+
key: '16tu1a'
|
|
4737
|
+
}], ['path', {
|
|
4738
|
+
d: 'm3.5 14.5.5.5',
|
|
4739
|
+
key: 'hapbhd'
|
|
4740
|
+
}], ['path', {
|
|
4741
|
+
d: 'm20 9 .5.5',
|
|
4742
|
+
key: '1n7z02'
|
|
4743
|
+
}], ['path', {
|
|
4744
|
+
d: 'm6.5 12.5 1 1',
|
|
4745
|
+
key: 'cs35ky'
|
|
4746
|
+
}], ['path', {
|
|
4747
|
+
d: 'm16.5 10.5 1 1',
|
|
4748
|
+
key: '696xn5'
|
|
4749
|
+
}], ['path', {
|
|
4750
|
+
d: 'm10 16 1.5 1.5',
|
|
4751
|
+
key: '11lckj'
|
|
4752
|
+
}]]);
|
|
4753
|
+
var Dna$1 = Dna;
|
|
4754
|
+
|
|
4596
4755
|
const Dog = createPreactComponent('Dog', [['path', {
|
|
4597
4756
|
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',
|
|
4598
4757
|
key: '19br0u'
|
|
@@ -4759,6 +4918,21 @@ const EggFried = createPreactComponent('EggFried', [['circle', {
|
|
|
4759
4918
|
}]]);
|
|
4760
4919
|
var EggFried$1 = EggFried;
|
|
4761
4920
|
|
|
4921
|
+
const EggOff = createPreactComponent('EggOff', [['path', {
|
|
4922
|
+
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',
|
|
4923
|
+
key: '6et380'
|
|
4924
|
+
}], ['path', {
|
|
4925
|
+
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',
|
|
4926
|
+
key: 'gcdc3f'
|
|
4927
|
+
}], ['line', {
|
|
4928
|
+
x1: '2',
|
|
4929
|
+
y1: '2',
|
|
4930
|
+
x2: '22',
|
|
4931
|
+
y2: '22',
|
|
4932
|
+
key: '1w4vcy'
|
|
4933
|
+
}]]);
|
|
4934
|
+
var EggOff$1 = EggOff;
|
|
4935
|
+
|
|
4762
4936
|
const Egg = createPreactComponent('Egg', [['path', {
|
|
4763
4937
|
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',
|
|
4764
4938
|
key: '1c39pg'
|
|
@@ -6076,9 +6250,33 @@ const Flashlight = createPreactComponent('Flashlight', [['path', {
|
|
|
6076
6250
|
}]]);
|
|
6077
6251
|
var Flashlight$1 = Flashlight;
|
|
6078
6252
|
|
|
6253
|
+
const FlaskConicalOff = createPreactComponent('FlaskConicalOff', [['path', {
|
|
6254
|
+
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',
|
|
6255
|
+
key: '59ek9y'
|
|
6256
|
+
}], ['path', {
|
|
6257
|
+
d: 'M10 2v2.343',
|
|
6258
|
+
key: '15t272'
|
|
6259
|
+
}], ['path', {
|
|
6260
|
+
d: 'M14 2v6.343',
|
|
6261
|
+
key: 'sxr80q'
|
|
6262
|
+
}], ['path', {
|
|
6263
|
+
d: 'M8.5 2h7',
|
|
6264
|
+
key: 'csnxdl'
|
|
6265
|
+
}], ['path', {
|
|
6266
|
+
d: 'M7 16h9',
|
|
6267
|
+
key: 't5njau'
|
|
6268
|
+
}], ['line', {
|
|
6269
|
+
x1: '2',
|
|
6270
|
+
y1: '2',
|
|
6271
|
+
x2: '22',
|
|
6272
|
+
y2: '22',
|
|
6273
|
+
key: '1w4vcy'
|
|
6274
|
+
}]]);
|
|
6275
|
+
var FlaskConicalOff$1 = FlaskConicalOff;
|
|
6276
|
+
|
|
6079
6277
|
const FlaskConical = createPreactComponent('FlaskConical', [['path', {
|
|
6080
|
-
d: 'M10
|
|
6081
|
-
key: '
|
|
6278
|
+
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',
|
|
6279
|
+
key: 'pzvekw'
|
|
6082
6280
|
}], ['path', {
|
|
6083
6281
|
d: 'M8.5 2h7',
|
|
6084
6282
|
key: 'csnxdl'
|
|
@@ -7665,6 +7863,63 @@ const Home = createPreactComponent('Home', [['path', {
|
|
|
7665
7863
|
}]]);
|
|
7666
7864
|
var Home$1 = Home;
|
|
7667
7865
|
|
|
7866
|
+
const HopOff = createPreactComponent('HopOff', [['path', {
|
|
7867
|
+
d: 'M17.5 5.5C19 7 20.5 9 21 11c-1.323.265-2.646.39-4.118.226',
|
|
7868
|
+
key: '10j95a'
|
|
7869
|
+
}], ['path', {
|
|
7870
|
+
d: 'M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5',
|
|
7871
|
+
key: '1mqyjd'
|
|
7872
|
+
}], ['path', {
|
|
7873
|
+
d: 'M17.5 17.5c-2.5 0-4 0-6-1',
|
|
7874
|
+
key: '11elt5'
|
|
7875
|
+
}], ['path', {
|
|
7876
|
+
d: 'M20 11.5c1 1.5 2 3.5 2 4.5',
|
|
7877
|
+
key: '13ezvz'
|
|
7878
|
+
}], ['path', {
|
|
7879
|
+
d: 'M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5',
|
|
7880
|
+
key: '1ufrz1'
|
|
7881
|
+
}], ['path', {
|
|
7882
|
+
d: 'M22 22c-2 0-3.5-.5-5.5-1.5',
|
|
7883
|
+
key: '1n8vbj'
|
|
7884
|
+
}], ['path', {
|
|
7885
|
+
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',
|
|
7886
|
+
key: '1h85u8'
|
|
7887
|
+
}], ['line', {
|
|
7888
|
+
x1: '2',
|
|
7889
|
+
y1: '2',
|
|
7890
|
+
x2: '22',
|
|
7891
|
+
y2: '22',
|
|
7892
|
+
key: '1w4vcy'
|
|
7893
|
+
}]]);
|
|
7894
|
+
var HopOff$1 = HopOff;
|
|
7895
|
+
|
|
7896
|
+
const Hop = createPreactComponent('Hop', [['path', {
|
|
7897
|
+
d: 'M17.5 5.5C19 7 20.5 9 21 11c-2.5.5-5 .5-8.5-1',
|
|
7898
|
+
key: 'l0z2za'
|
|
7899
|
+
}], ['path', {
|
|
7900
|
+
d: 'M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5',
|
|
7901
|
+
key: '1mqyjd'
|
|
7902
|
+
}], ['path', {
|
|
7903
|
+
d: 'M16.5 11.5c1 2 1 3.5 1 6-2.5 0-4 0-6-1',
|
|
7904
|
+
key: '10xoad'
|
|
7905
|
+
}], ['path', {
|
|
7906
|
+
d: 'M20 11.5c1 1.5 2 3.5 2 4.5-1.5.5-3 0-4.5-.5',
|
|
7907
|
+
key: '1a4gpx'
|
|
7908
|
+
}], ['path', {
|
|
7909
|
+
d: 'M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5',
|
|
7910
|
+
key: '1ufrz1'
|
|
7911
|
+
}], ['path', {
|
|
7912
|
+
d: 'M20.5 16.5c1 2 1.5 3.5 1.5 5.5-2 0-3.5-.5-5.5-1.5',
|
|
7913
|
+
key: '1ok5d2'
|
|
7914
|
+
}], ['path', {
|
|
7915
|
+
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',
|
|
7916
|
+
key: '8hlroy'
|
|
7917
|
+
}], ['path', {
|
|
7918
|
+
d: 'M4.5 4.5 3 3c-.184-.185-.184-.816 0-1',
|
|
7919
|
+
key: 'q3aj97'
|
|
7920
|
+
}]]);
|
|
7921
|
+
var Hop$1 = Hop;
|
|
7922
|
+
|
|
7668
7923
|
const Hourglass = createPreactComponent('Hourglass', [['path', {
|
|
7669
7924
|
d: 'M5 22h14',
|
|
7670
7925
|
key: 'ehvnwv'
|
|
@@ -9441,6 +9696,36 @@ const Milestone = createPreactComponent('Milestone', [['path', {
|
|
|
9441
9696
|
}]]);
|
|
9442
9697
|
var Milestone$1 = Milestone;
|
|
9443
9698
|
|
|
9699
|
+
const MilkOff = createPreactComponent('MilkOff', [['path', {
|
|
9700
|
+
d: 'M8 2h8',
|
|
9701
|
+
key: '1ssgc1'
|
|
9702
|
+
}], ['path', {
|
|
9703
|
+
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',
|
|
9704
|
+
key: 'y0ejgx'
|
|
9705
|
+
}], ['path', {
|
|
9706
|
+
d: 'M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435',
|
|
9707
|
+
key: 'iaxqsy'
|
|
9708
|
+
}], ['line', {
|
|
9709
|
+
x1: '2',
|
|
9710
|
+
y1: '2',
|
|
9711
|
+
x2: '22',
|
|
9712
|
+
y2: '22',
|
|
9713
|
+
key: '1w4vcy'
|
|
9714
|
+
}]]);
|
|
9715
|
+
var MilkOff$1 = MilkOff;
|
|
9716
|
+
|
|
9717
|
+
const Milk = createPreactComponent('Milk', [['path', {
|
|
9718
|
+
d: 'M8 2h8',
|
|
9719
|
+
key: '1ssgc1'
|
|
9720
|
+
}], ['path', {
|
|
9721
|
+
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',
|
|
9722
|
+
key: 'qtp12x'
|
|
9723
|
+
}], ['path', {
|
|
9724
|
+
d: 'M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0',
|
|
9725
|
+
key: 'ygeh44'
|
|
9726
|
+
}]]);
|
|
9727
|
+
var Milk$1 = Milk;
|
|
9728
|
+
|
|
9444
9729
|
const Minimize2 = createPreactComponent('Minimize2', [['polyline', {
|
|
9445
9730
|
points: '4 14 10 14 10 20',
|
|
9446
9731
|
key: '11kfnr'
|
|
@@ -9922,6 +10207,39 @@ const Newspaper = createPreactComponent('Newspaper', [['path', {
|
|
|
9922
10207
|
}]]);
|
|
9923
10208
|
var Newspaper$1 = Newspaper;
|
|
9924
10209
|
|
|
10210
|
+
const NutOff = createPreactComponent('NutOff', [['path', {
|
|
10211
|
+
d: 'M12 4V2',
|
|
10212
|
+
key: '1k5q1u'
|
|
10213
|
+
}], ['path', {
|
|
10214
|
+
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',
|
|
10215
|
+
key: '1xcvy9'
|
|
10216
|
+
}], ['path', {
|
|
10217
|
+
d: 'M19 10v3.343',
|
|
10218
|
+
key: '163tfc'
|
|
10219
|
+
}], ['path', {
|
|
10220
|
+
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',
|
|
10221
|
+
key: '17914v'
|
|
10222
|
+
}], ['line', {
|
|
10223
|
+
x1: '2',
|
|
10224
|
+
y1: '2',
|
|
10225
|
+
x2: '22',
|
|
10226
|
+
y2: '22',
|
|
10227
|
+
key: '1w4vcy'
|
|
10228
|
+
}]]);
|
|
10229
|
+
var NutOff$1 = NutOff;
|
|
10230
|
+
|
|
10231
|
+
const Nut = createPreactComponent('Nut', [['path', {
|
|
10232
|
+
d: 'M12 4V2',
|
|
10233
|
+
key: '1k5q1u'
|
|
10234
|
+
}], ['path', {
|
|
10235
|
+
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',
|
|
10236
|
+
key: '1tgyif'
|
|
10237
|
+
}], ['path', {
|
|
10238
|
+
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',
|
|
10239
|
+
key: 'tnsqj'
|
|
10240
|
+
}]]);
|
|
10241
|
+
var Nut$1 = Nut;
|
|
10242
|
+
|
|
9925
10243
|
const Octagon = createPreactComponent('Octagon', [['polygon', {
|
|
9926
10244
|
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',
|
|
9927
10245
|
key: 'h1p8hx'
|
|
@@ -13876,6 +14194,18 @@ const Utensils = createPreactComponent('Utensils', [['path', {
|
|
|
13876
14194
|
}]]);
|
|
13877
14195
|
var Utensils$1 = Utensils;
|
|
13878
14196
|
|
|
14197
|
+
const Vegan = createPreactComponent('Vegan', [['path', {
|
|
14198
|
+
d: 'M2 2c4.056 3.007 9.232 9.337 10 20 .897-6.818 1.5-9.5 4-14',
|
|
14199
|
+
key: 'eao96d'
|
|
14200
|
+
}], ['path', {
|
|
14201
|
+
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',
|
|
14202
|
+
key: 'fbotu5'
|
|
14203
|
+
}], ['path', {
|
|
14204
|
+
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',
|
|
14205
|
+
key: '14agoq'
|
|
14206
|
+
}]]);
|
|
14207
|
+
var Vegan$1 = Vegan;
|
|
14208
|
+
|
|
13879
14209
|
const VenetianMask = createPreactComponent('VenetianMask', [['path', {
|
|
13880
14210
|
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',
|
|
13881
14211
|
key: '1g6z3j'
|
|
@@ -14171,6 +14501,69 @@ const Webhook = createPreactComponent('Webhook', [['path', {
|
|
|
14171
14501
|
}]]);
|
|
14172
14502
|
var Webhook$1 = Webhook;
|
|
14173
14503
|
|
|
14504
|
+
const WheatOff = createPreactComponent('WheatOff', [['path', {
|
|
14505
|
+
d: 'm2 22 10-10',
|
|
14506
|
+
key: '28ilpk'
|
|
14507
|
+
}], ['path', {
|
|
14508
|
+
d: 'm16 8-1.17 1.17',
|
|
14509
|
+
key: '1qqm82'
|
|
14510
|
+
}], ['path', {
|
|
14511
|
+
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',
|
|
14512
|
+
key: '1rdhi6'
|
|
14513
|
+
}], ['path', {
|
|
14514
|
+
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',
|
|
14515
|
+
key: '4wz8re'
|
|
14516
|
+
}], ['path', {
|
|
14517
|
+
d: 'M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62',
|
|
14518
|
+
key: 'rves66'
|
|
14519
|
+
}], ['path', {
|
|
14520
|
+
d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z',
|
|
14521
|
+
key: '19rau1'
|
|
14522
|
+
}], ['path', {
|
|
14523
|
+
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',
|
|
14524
|
+
key: 'tc8ph9'
|
|
14525
|
+
}], ['path', {
|
|
14526
|
+
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',
|
|
14527
|
+
key: 'ak46r'
|
|
14528
|
+
}], ['path', {
|
|
14529
|
+
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',
|
|
14530
|
+
key: '1tw520'
|
|
14531
|
+
}], ['line', {
|
|
14532
|
+
x1: '2',
|
|
14533
|
+
y1: '2',
|
|
14534
|
+
x2: '22',
|
|
14535
|
+
y2: '22',
|
|
14536
|
+
key: '1w4vcy'
|
|
14537
|
+
}]]);
|
|
14538
|
+
var WheatOff$1 = WheatOff;
|
|
14539
|
+
|
|
14540
|
+
const Wheat = createPreactComponent('Wheat', [['path', {
|
|
14541
|
+
d: 'M2 22 16 8',
|
|
14542
|
+
key: '60hf96'
|
|
14543
|
+
}], ['path', {
|
|
14544
|
+
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',
|
|
14545
|
+
key: '1rdhi6'
|
|
14546
|
+
}], ['path', {
|
|
14547
|
+
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',
|
|
14548
|
+
key: '1sdzmb'
|
|
14549
|
+
}], ['path', {
|
|
14550
|
+
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',
|
|
14551
|
+
key: 'eoatbi'
|
|
14552
|
+
}], ['path', {
|
|
14553
|
+
d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z',
|
|
14554
|
+
key: '19rau1'
|
|
14555
|
+
}], ['path', {
|
|
14556
|
+
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',
|
|
14557
|
+
key: 'tc8ph9'
|
|
14558
|
+
}], ['path', {
|
|
14559
|
+
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',
|
|
14560
|
+
key: '2m8kc5'
|
|
14561
|
+
}], ['path', {
|
|
14562
|
+
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',
|
|
14563
|
+
key: 'vex3ng'
|
|
14564
|
+
}]]);
|
|
14565
|
+
var Wheat$1 = Wheat;
|
|
14566
|
+
|
|
14174
14567
|
const WifiOff = createPreactComponent('WifiOff', [['line', {
|
|
14175
14568
|
x1: '2',
|
|
14176
14569
|
y1: '2',
|
|
@@ -14231,6 +14624,27 @@ const Wind = createPreactComponent('Wind', [['path', {
|
|
|
14231
14624
|
}]]);
|
|
14232
14625
|
var Wind$1 = Wind;
|
|
14233
14626
|
|
|
14627
|
+
const WineOff = createPreactComponent('WineOff', [['path', {
|
|
14628
|
+
d: 'M8 22h8',
|
|
14629
|
+
key: 'rmew8v'
|
|
14630
|
+
}], ['path', {
|
|
14631
|
+
d: 'M7 10h3m7 0h-1.343',
|
|
14632
|
+
key: 'v48bem'
|
|
14633
|
+
}], ['path', {
|
|
14634
|
+
d: 'M12 15v7',
|
|
14635
|
+
key: 't2xh3l'
|
|
14636
|
+
}], ['path', {
|
|
14637
|
+
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',
|
|
14638
|
+
key: '1ymjlu'
|
|
14639
|
+
}], ['line', {
|
|
14640
|
+
x1: '2',
|
|
14641
|
+
y1: '2',
|
|
14642
|
+
x2: '22',
|
|
14643
|
+
y2: '22',
|
|
14644
|
+
key: '1w4vcy'
|
|
14645
|
+
}]]);
|
|
14646
|
+
var WineOff$1 = WineOff;
|
|
14647
|
+
|
|
14234
14648
|
const Wine = createPreactComponent('Wine', [['path', {
|
|
14235
14649
|
d: 'M8 22h8',
|
|
14236
14650
|
key: 'rmew8v'
|
|
@@ -14516,6 +14930,8 @@ exports.BatteryFull = BatteryFull$1;
|
|
|
14516
14930
|
exports.BatteryLow = BatteryLow$1;
|
|
14517
14931
|
exports.BatteryMedium = BatteryMedium$1;
|
|
14518
14932
|
exports.Beaker = Beaker$1;
|
|
14933
|
+
exports.Bean = Bean$1;
|
|
14934
|
+
exports.BeanOff = BeanOff$1;
|
|
14519
14935
|
exports.Bed = Bed$1;
|
|
14520
14936
|
exports.BedDouble = BedDouble$1;
|
|
14521
14937
|
exports.BedSingle = BedSingle$1;
|
|
@@ -14568,11 +14984,14 @@ exports.CalendarX = CalendarX$1;
|
|
|
14568
14984
|
exports.CalendarX2 = CalendarX2$1;
|
|
14569
14985
|
exports.Camera = Camera$1;
|
|
14570
14986
|
exports.CameraOff = CameraOff$1;
|
|
14987
|
+
exports.Candy = Candy$1;
|
|
14988
|
+
exports.CandyOff = CandyOff$1;
|
|
14571
14989
|
exports.Car = Car$1;
|
|
14572
14990
|
exports.Carrot = Carrot$1;
|
|
14573
14991
|
exports.Cast = Cast$1;
|
|
14574
14992
|
exports.Cat = Cat$1;
|
|
14575
14993
|
exports.Check = Check$1;
|
|
14994
|
+
exports.CheckCheck = CheckCheck$1;
|
|
14576
14995
|
exports.CheckCircle = CheckCircle$1;
|
|
14577
14996
|
exports.CheckCircle2 = CheckCircle2$1;
|
|
14578
14997
|
exports.CheckSquare = CheckSquare$1;
|
|
@@ -14689,6 +15108,8 @@ exports.Disc = Disc$1;
|
|
|
14689
15108
|
exports.Divide = Divide$1;
|
|
14690
15109
|
exports.DivideCircle = DivideCircle$1;
|
|
14691
15110
|
exports.DivideSquare = DivideSquare$1;
|
|
15111
|
+
exports.Dna = Dna$1;
|
|
15112
|
+
exports.DnaOff = DnaOff$1;
|
|
14692
15113
|
exports.Dog = Dog$1;
|
|
14693
15114
|
exports.DollarSign = DollarSign$1;
|
|
14694
15115
|
exports.Download = Download$1;
|
|
@@ -14704,6 +15125,7 @@ exports.Edit2 = Edit2$1;
|
|
|
14704
15125
|
exports.Edit3 = Edit3$1;
|
|
14705
15126
|
exports.Egg = Egg$1;
|
|
14706
15127
|
exports.EggFried = EggFried$1;
|
|
15128
|
+
exports.EggOff = EggOff$1;
|
|
14707
15129
|
exports.Equal = Equal$1;
|
|
14708
15130
|
exports.EqualNot = EqualNot$1;
|
|
14709
15131
|
exports.Eraser = Eraser$1;
|
|
@@ -14785,6 +15207,7 @@ exports.Flame = Flame$1;
|
|
|
14785
15207
|
exports.Flashlight = Flashlight$1;
|
|
14786
15208
|
exports.FlashlightOff = FlashlightOff$1;
|
|
14787
15209
|
exports.FlaskConical = FlaskConical$1;
|
|
15210
|
+
exports.FlaskConicalOff = FlaskConicalOff$1;
|
|
14788
15211
|
exports.FlaskRound = FlaskRound$1;
|
|
14789
15212
|
exports.FlipHorizontal = FlipHorizontal$1;
|
|
14790
15213
|
exports.FlipHorizontal2 = FlipHorizontal2$1;
|
|
@@ -14877,6 +15300,8 @@ exports.Hexagon = Hexagon$1;
|
|
|
14877
15300
|
exports.Highlighter = Highlighter$1;
|
|
14878
15301
|
exports.History = History$1;
|
|
14879
15302
|
exports.Home = Home$1;
|
|
15303
|
+
exports.Hop = Hop$1;
|
|
15304
|
+
exports.HopOff = HopOff$1;
|
|
14880
15305
|
exports.Hourglass = Hourglass$1;
|
|
14881
15306
|
exports.IceCream = IceCream$1;
|
|
14882
15307
|
exports.Image = Image$1;
|
|
@@ -14974,6 +15399,8 @@ exports.MicOff = MicOff$1;
|
|
|
14974
15399
|
exports.Microscope = Microscope$1;
|
|
14975
15400
|
exports.Microwave = Microwave$1;
|
|
14976
15401
|
exports.Milestone = Milestone$1;
|
|
15402
|
+
exports.Milk = Milk$1;
|
|
15403
|
+
exports.MilkOff = MilkOff$1;
|
|
14977
15404
|
exports.Minimize = Minimize$1;
|
|
14978
15405
|
exports.Minimize2 = Minimize2$1;
|
|
14979
15406
|
exports.Minus = Minus$1;
|
|
@@ -15007,6 +15434,8 @@ exports.Navigation2Off = Navigation2Off$1;
|
|
|
15007
15434
|
exports.NavigationOff = NavigationOff$1;
|
|
15008
15435
|
exports.Network = Network$1;
|
|
15009
15436
|
exports.Newspaper = Newspaper$1;
|
|
15437
|
+
exports.Nut = Nut$1;
|
|
15438
|
+
exports.NutOff = NutOff$1;
|
|
15010
15439
|
exports.Octagon = Octagon$1;
|
|
15011
15440
|
exports.Option = Option$1;
|
|
15012
15441
|
exports.Outdent = Outdent$1;
|
|
@@ -15240,6 +15669,7 @@ exports.UserX = UserX$1;
|
|
|
15240
15669
|
exports.Users = Users$1;
|
|
15241
15670
|
exports.Utensils = Utensils$1;
|
|
15242
15671
|
exports.UtensilsCrossed = UtensilsCrossed$1;
|
|
15672
|
+
exports.Vegan = Vegan$1;
|
|
15243
15673
|
exports.VenetianMask = VenetianMask$1;
|
|
15244
15674
|
exports.Verified = Verified$1;
|
|
15245
15675
|
exports.Vibrate = Vibrate$1;
|
|
@@ -15259,10 +15689,13 @@ exports.Watch = Watch$1;
|
|
|
15259
15689
|
exports.Waves = Waves$1;
|
|
15260
15690
|
exports.Webcam = Webcam$1;
|
|
15261
15691
|
exports.Webhook = Webhook$1;
|
|
15692
|
+
exports.Wheat = Wheat$1;
|
|
15693
|
+
exports.WheatOff = WheatOff$1;
|
|
15262
15694
|
exports.Wifi = Wifi$1;
|
|
15263
15695
|
exports.WifiOff = WifiOff$1;
|
|
15264
15696
|
exports.Wind = Wind$1;
|
|
15265
15697
|
exports.Wine = Wine$1;
|
|
15698
|
+
exports.WineOff = WineOff$1;
|
|
15266
15699
|
exports.WrapText = WrapText$1;
|
|
15267
15700
|
exports.Wrench = Wrench$1;
|
|
15268
15701
|
exports.X = X$1;
|