@100mslive/react-icons 0.9.2 → 0.9.3-alpha.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 +10 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # React Icon Library
2
2
 
3
+ Using the package in your application
4
+
5
+ ```
6
+ // npm
7
+ npm install @100mslive/react-icons@latest --save
8
+
9
+ // yarn
10
+ yarn add @100mslive/react-icons@latest
11
+ ```
3
12
  ### How to add icons
4
13
 
5
14
  1. add (only) 24x24 px svg file in `/assets`
@@ -8,3 +17,4 @@
8
17
  ```bash
9
18
  yarn build
10
19
  ```
20
+ The jsx files for the corresponding files will be autogenerated.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
- "version": "0.9.2",
7
+ "version": "0.9.3-alpha.1",
8
8
  "author": "100ms",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -45,5 +45,5 @@
45
45
  "peerDependencies": {
46
46
  "react": ">=17.0.0 <19.0.0"
47
47
  },
48
- "gitHead": "e1fee68a01f0166cc2c5e19a39c7b0119e0a3bd8"
48
+ "gitHead": "186da3cb403754304f9e22daa325d046c0d4b2a4"
49
49
  }