vadivam-preact 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.
Files changed (2) hide show
  1. package/README.md +15 -9
  2. package/package.json +18 -2
package/README.md CHANGED
@@ -1,21 +1,27 @@
1
1
  # vadivam-preact
2
2
 
3
- Pixel-perfect, open-source Vadivam icons for Preact.
3
+ Pixel-perfect 24px outline icon components for Preact 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-preact?style=flat-square&color=111)](https://www.npmjs.com/package/vadivam-preact)
6
+ [![downloads](https://img.shields.io/npm/dw/vadivam-preact?style=flat-square&color=666)](https://www.npmjs.com/package/vadivam-preact)
7
+ [![license](https://img.shields.io/npm/l/vadivam-preact?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/docs/public/preview.png?v=0.0.23)
6
10
 
7
11
  ```sh
8
- bun add vadivam-preact
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"><Activity /></VadivamProvider>
18
+ <VadivamProvider size={20} color="navy">
19
+ <Activity />
20
+ </VadivamProvider>;
15
21
  ```
16
22
 
17
- Icons accept native SVG attributes plus `size`, `color`, `strokeWidth`,
18
- `absoluteStrokeWidth`, and `title`. Static named and per-icon imports are
19
- tree-shakeable. For data-driven names, use `DynamicIcon` from
20
- `vadivam-preact/dynamic` and `dynamicIconImports` from
21
- `vadivam-preact/dynamicIconImports`.
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.21",
4
- "description": "Pixel-perfect Vadivam icons for Preact.",
3
+ "version": "0.0.23",
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,