@dynamic-labs/iconic 0.1.40 → 0.1.41

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ### Adding an icon
2
2
 
3
3
  1. Add the SVG file to the appropriate folder
4
- 1. Add a `createIconic` compomenent to the `index.ts` in that folder for that icon
4
+ 1. Add a `createIconic` compomenent to the `index.ts` in that folder for that icon (iconName should be lowercase)
5
5
  1. Bump the version in package.json
6
6
  1. run `nvm use`
7
7
  1. run `yarn install` if not yet
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "A library of icons used by Dynamic Lab's SDK, served via CDN",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {
@@ -103,12 +103,12 @@ exports.YouTubeIcon = (0, Iconic_1.createIconic)({
103
103
  sourcePath: 'icons/social/youtube.svg'
104
104
  });
105
105
  exports.OnePasswordIcon = (0, Iconic_1.createIconic)({
106
- iconName: 'onePassword',
106
+ iconName: 'one-password',
107
107
  alt: 'onePassword',
108
108
  sourcePath: 'icons/social/onePassword.svg'
109
109
  });
110
110
  exports.OnePasswordDarkIcon = (0, Iconic_1.createIconic)({
111
- iconName: 'onePassword-dark',
111
+ iconName: 'one-password-dark',
112
112
  alt: 'onePassword-dark',
113
113
  sourcePath: 'icons/social/onePassword-dark.svg'
114
114
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "A library of icons used by Dynamic Lab's SDK, served via CDN",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {