vadivam-preact 0.0.21 → 0.0.22
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 +15 -9
- package/package.json +18 -2
package/README.md
CHANGED
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
# vadivam-preact
|
|
2
2
|
|
|
3
|
-
Pixel-perfect
|
|
3
|
+
Pixel-perfect 24px outline icon components for Preact with tree-shakeable imports.
|
|
4
4
|
|
|
5
|
-
](https://www.npmjs.com/package/vadivam-preact)
|
|
6
|
+
[](https://www.npmjs.com/package/vadivam-preact)
|
|
7
|
+
[](https://github.com/praveenjuge/vadivam/blob/main/LICENSE)
|
|
8
|
+
|
|
9
|
+

|
|
6
10
|
|
|
7
11
|
```sh
|
|
8
|
-
|
|
12
|
+
npm install vadivam-preact
|
|
9
13
|
```
|
|
10
14
|
|
|
11
15
|
```tsx
|
|
12
16
|
import { Activity, VadivamProvider } from "vadivam-preact";
|
|
13
17
|
|
|
14
|
-
<VadivamProvider size={20} color="navy"
|
|
18
|
+
<VadivamProvider size={20} color="navy">
|
|
19
|
+
<Activity />
|
|
20
|
+
</VadivamProvider>
|
|
15
21
|
```
|
|
16
22
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
23
|
+
- Native SVG attributes plus size, color, stroke width, and accessible titles
|
|
24
|
+
- Tree-shakeable named and per-icon imports
|
|
25
|
+
- Provider and typed dynamic icon APIs
|
|
26
|
+
|
|
27
|
+
[Browse icons](https://vadivam.praveenjuge.com) · [GitHub](https://github.com/praveenjuge/vadivam) · [Issues](https://github.com/praveenjuge/vadivam/issues)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vadivam-preact",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Pixel-perfect
|
|
3
|
+
"version": "0.0.22",
|
|
4
|
+
"description": "Pixel-perfect 24px outline icon components for Preact with tree-shakeable imports.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Praveen Juge",
|
|
7
7
|
"repository": {
|
|
@@ -9,6 +9,22 @@
|
|
|
9
9
|
"url": "git+https://github.com/praveenjuge/vadivam.git",
|
|
10
10
|
"directory": "packages/vadivam-preact"
|
|
11
11
|
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/praveenjuge/vadivam/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"icons",
|
|
17
|
+
"svg",
|
|
18
|
+
"outline-icons",
|
|
19
|
+
"icon-library",
|
|
20
|
+
"icon-pack",
|
|
21
|
+
"24px",
|
|
22
|
+
"tree-shakeable",
|
|
23
|
+
"open-source",
|
|
24
|
+
"vadivam",
|
|
25
|
+
"preact",
|
|
26
|
+
"preact-icons"
|
|
27
|
+
],
|
|
12
28
|
"homepage": "https://vadivam.praveenjuge.com",
|
|
13
29
|
"type": "module",
|
|
14
30
|
"sideEffects": false,
|