vadivam-astro 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.
Files changed (2) hide show
  1. package/README.md +12 -8
  2. package/package.json +19 -2
package/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # vadivam-astro
2
2
 
3
- Pixel-perfect, open-source Vadivam icons for Astro.
3
+ Pixel-perfect 24px outline icon components for Astro with tree-shakeable imports.
4
4
 
5
- ![All Vadivam icons](https://raw.githubusercontent.com/praveenjuge/vadivam/main/apps/web/public/preview.png?v=0.0.21)
5
+ [![npm version](https://img.shields.io/npm/v/vadivam-astro?style=flat-square&color=111)](https://www.npmjs.com/package/vadivam-astro)
6
+ [![downloads](https://img.shields.io/npm/dw/vadivam-astro?style=flat-square&color=666)](https://www.npmjs.com/package/vadivam-astro)
7
+ [![license](https://img.shields.io/npm/l/vadivam-astro?style=flat-square&color=111)](https://github.com/praveenjuge/vadivam/blob/main/LICENSE)
8
+
9
+ ![All Vadivam icons](https://raw.githubusercontent.com/praveenjuge/vadivam/main/apps/web/public/preview.png?v=0.0.22)
6
10
 
7
11
  ```sh
8
- bun add vadivam-astro
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
- Icons accept native SVG attributes plus `size`, `color`, `strokeWidth`,
19
- `absoluteStrokeWidth`, and `title`. Static named and per-icon imports are
20
- tree-shakeable. For data-driven names, use `DynamicIcon` from
21
- `vadivam-astro/dynamic` and `dynamicIconImports` from
22
- `vadivam-astro/dynamicIconImports`.
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.21",
4
- "description": "Pixel-perfect Vadivam icons for Astro.",
3
+ "version": "0.0.22",
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,