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

|
|
6
10
|
|
|
7
11
|
```sh
|
|
8
|
-
|
|
12
|
+
npm install vadivam-astro
|
|
9
13
|
```
|
|
10
14
|
|
|
11
15
|
```astro
|
|
@@ -15,8 +19,8 @@ import { Activity } from "vadivam-astro";
|
|
|
15
19
|
<Activity size={20} color="navy" />
|
|
16
20
|
```
|
|
17
21
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
- Native SVG attributes plus size, color, stroke width, and accessible titles
|
|
23
|
+
- Tree-shakeable named and per-icon imports
|
|
24
|
+
- Static components and typed dynamic icon APIs
|
|
25
|
+
|
|
26
|
+
[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-astro",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Pixel-perfect
|
|
3
|
+
"version": "0.0.23",
|
|
4
|
+
"description": "Pixel-perfect 24px outline icon components for Astro with tree-shakeable imports.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Praveen Juge",
|
|
7
7
|
"repository": {
|
|
@@ -9,6 +9,23 @@
|
|
|
9
9
|
"url": "git+https://github.com/praveenjuge/vadivam.git",
|
|
10
10
|
"directory": "packages/vadivam-astro"
|
|
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
|
+
"astro",
|
|
26
|
+
"astro-icons",
|
|
27
|
+
"astro-components"
|
|
28
|
+
],
|
|
12
29
|
"homepage": "https://vadivam.praveenjuge.com",
|
|
13
30
|
"type": "module",
|
|
14
31
|
"sideEffects": false,
|