@rvx/iconoir 1.0.0 → 1.0.1
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,10 +23,10 @@ All icons are rendered with the following additional css classes:
|
|
|
23
23
|
|
|
24
24
|
You can add additional attributes or event handlers:
|
|
25
25
|
```jsx
|
|
26
|
-
import {
|
|
26
|
+
import { Override } from "rvx";
|
|
27
27
|
import { Sparks } from "@rvx/iconoir/solid";
|
|
28
28
|
|
|
29
|
-
<
|
|
29
|
+
<Override role="button" on:click={...}>
|
|
30
30
|
<Sparks />
|
|
31
|
-
</
|
|
31
|
+
</Override>
|
|
32
32
|
```
|