@modul-es/icons 0.1.1 → 0.1.2

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 +1 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -12,7 +12,7 @@ A simple icon system supporting multiple icon sets with consistent props and sty
12
12
  ## Basic Usage
13
13
 
14
14
  ```tsx
15
- import { Icon } from '@modules/icons';
15
+ import { Icon } from '@modul-es/icons';
16
16
 
17
17
  // Basic usage
18
18
  <Icon set="huge" name="home-01" color="slate-400" stroke="2" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modul-es/icons",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Icon component system",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -31,5 +31,6 @@
31
31
  "directory": "modules/icons"
32
32
  },
33
33
  "keywords": ["react", "icons", "components", "modules"],
34
- "author": "@traf"
34
+ "author": "@traf",
35
+ "homepage": "https://modul.es"
35
36
  }