@jis3r/icons 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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,11 +17,11 @@ Import icons as named Svelte components:
17
17
 
18
18
  ```svelte
19
19
  <script>
20
- import { Sun, Moon } from '@jis3r/icons';
20
+ import { Activity, Star } from '@jis3r/icons';
21
21
  </script>
22
22
 
23
- <Sun size={32} color="orange" />
24
- <Moon size={32} color="blue" />
23
+ <Activity size={32} color="orange" strokeWidth={2.5} />
24
+ <Star size={32} color="blue" />
25
25
  ```
26
26
 
27
27
  - All icons are available as named exports in PascalCase.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jis3r/icons",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "beautifully crafted, moving icons. for svelte.",
5
5
  "author": "jis3r",
6
6
  "license": "MIT",