@dynamic-labs/iconic 0.1.39 → 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.d.ts +2 -0
- package/dist/src/icons/social/index.js +11 -1
- 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
|
@@ -19,3 +19,5 @@ export declare const AppleSocialIcon: Iconic;
|
|
|
19
19
|
export declare const AppleDarkSocialIcon: Iconic;
|
|
20
20
|
export declare const InstagramIcon: Iconic;
|
|
21
21
|
export declare const YouTubeIcon: Iconic;
|
|
22
|
+
export declare const OnePasswordIcon: Iconic;
|
|
23
|
+
export declare const OnePasswordDarkIcon: Iconic;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.YouTubeIcon = exports.InstagramIcon = exports.AppleDarkSocialIcon = exports.AppleSocialIcon = exports.TwitterDarkIcon = exports.TwitterIcon = exports.TwitchDarkIcon = exports.TwitchIcon = exports.TelegramIcon = exports.SlackIcon = exports.MicrosoftIcon = exports.LinkedinIcon = exports.HelpdeskIcon = exports.GoogleIcon = exports.GitlabIcon = exports.GithubDarkIcon = exports.GithubIcon = exports.FacebookIcon = exports.DiscordIcon = exports.BitbucketIcon = void 0;
|
|
3
|
+
exports.OnePasswordDarkIcon = exports.OnePasswordIcon = exports.YouTubeIcon = exports.InstagramIcon = exports.AppleDarkSocialIcon = exports.AppleSocialIcon = exports.TwitterDarkIcon = exports.TwitterIcon = exports.TwitchDarkIcon = exports.TwitchIcon = exports.TelegramIcon = exports.SlackIcon = exports.MicrosoftIcon = exports.LinkedinIcon = exports.HelpdeskIcon = exports.GoogleIcon = exports.GitlabIcon = exports.GithubDarkIcon = exports.GithubIcon = exports.FacebookIcon = exports.DiscordIcon = exports.BitbucketIcon = void 0;
|
|
4
4
|
const Iconic_1 = require("../../Iconic");
|
|
5
5
|
exports.BitbucketIcon = (0, Iconic_1.createIconic)({
|
|
6
6
|
iconName: 'bitbucket',
|
|
@@ -102,3 +102,13 @@ exports.YouTubeIcon = (0, Iconic_1.createIconic)({
|
|
|
102
102
|
alt: 'YouTube',
|
|
103
103
|
sourcePath: 'icons/social/youtube.svg'
|
|
104
104
|
});
|
|
105
|
+
exports.OnePasswordIcon = (0, Iconic_1.createIconic)({
|
|
106
|
+
iconName: 'one-password',
|
|
107
|
+
alt: 'onePassword',
|
|
108
|
+
sourcePath: 'icons/social/onePassword.svg'
|
|
109
|
+
});
|
|
110
|
+
exports.OnePasswordDarkIcon = (0, Iconic_1.createIconic)({
|
|
111
|
+
iconName: 'one-password-dark',
|
|
112
|
+
alt: 'onePassword-dark',
|
|
113
|
+
sourcePath: 'icons/social/onePassword-dark.svg'
|
|
114
|
+
});
|