@rvx/iconoir 0.0.4 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -20,3 +20,13 @@ All icons are rendered with the following additional css classes:
20
20
  ```html
21
21
  <svg class="iconoir iconoir-solid iconoir-sparks" ...
22
22
  ```
23
+
24
+ You can add additional attributes or event handlers:
25
+ ```jsx
26
+ import { Overwrite } from "rvx";
27
+ import { Sparks } from "@rvx/iconoir/solid";
28
+
29
+ <Overwrite role="button" on:click={...}>
30
+ <Sparks />
31
+ </Overwrite>
32
+ ```
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "iconoir"
11
11
  ],
12
12
  "license": "MIT",
13
- "version": "0.0.4",
13
+ "version": "0.1.0",
14
14
  "type": "module",
15
15
  "sideEffects": false,
16
16
  "exports": {
@@ -21,9 +21,10 @@
21
21
  "build": "node generate.js && tsc"
22
22
  },
23
23
  "peerDependencies": {
24
- "rvx": "^23.2.0"
24
+ "rvx": "^24.0.0"
25
25
  },
26
26
  "devDependencies": {
27
- "iconoir": "^7.11.0"
27
+ "iconoir": "^7.11.0",
28
+ "typescript": "^5.9.3"
28
29
  }
29
30
  }