@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 +1 -1
- package/dist/package.json +1 -1
- package/dist/src/icons/social/index.js +2 -2
- package/package.json +1 -1
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
|
@@ -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: '
|
|
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: '
|
|
111
|
+
iconName: 'one-password-dark',
|
|
112
112
|
alt: 'onePassword-dark',
|
|
113
113
|
sourcePath: 'icons/social/onePassword-dark.svg'
|
|
114
114
|
});
|