@dynamic-labs/iconic 0.1.51 → 1.1.0-alpha.25
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/CHANGELOG.md +2479 -0
- package/README.md +1 -7
- package/_virtual/_tslib.cjs +37 -0
- package/_virtual/_tslib.js +33 -0
- package/package.json +25 -58
- package/src/Iconic.cjs +22 -0
- package/{dist/src → src}/Iconic.d.ts +1 -1
- package/src/Iconic.js +17 -0
- package/src/components/SocialIcon.cjs +17 -0
- package/{dist/src → src}/components/SocialIcon.d.ts +1 -2
- package/src/components/SocialIcon.js +13 -0
- package/src/components/findSocialIcon.cjs +18 -0
- package/src/components/findSocialIcon.js +14 -0
- package/src/components/getSocialIcon.cjs +20 -0
- package/src/components/getSocialIcon.js +16 -0
- package/src/icons/browsers/index.cjs +43 -0
- package/src/icons/browsers/index.js +34 -0
- package/src/icons/chains/index.cjs +121 -0
- package/src/icons/chains/index.js +99 -0
- package/src/icons/misc/index.cjs +25 -0
- package/src/icons/misc/index.js +19 -0
- package/src/icons/mobile/index.cjs +19 -0
- package/src/icons/mobile/index.js +14 -0
- package/src/icons/social/index.cjs +145 -0
- package/src/icons/social/index.js +119 -0
- package/src/icons/wallets/index.cjs +385 -0
- package/src/icons/wallets/index.js +319 -0
- package/src/index.cjs +137 -0
- package/src/index.js +10 -0
- package/src/logger.cjs +9 -0
- package/src/logger.d.ts +2 -0
- package/src/logger.js +5 -0
- package/dist/package.json +0 -68
- package/dist/src/Iconic.js +0 -16
- package/dist/src/components/SocialIcon.js +0 -24
- package/dist/src/components/findSocialIcon.js +0 -14
- package/dist/src/components/getSocialIcon.js +0 -40
- package/dist/src/components/index.js +0 -19
- package/dist/src/icons/browsers/index.js +0 -34
- package/dist/src/icons/chains/index.js +0 -99
- package/dist/src/icons/index.js +0 -22
- package/dist/src/icons/misc/index.js +0 -19
- package/dist/src/icons/mobile/index.js +0 -14
- package/dist/src/icons/social/index.js +0 -119
- package/dist/src/icons/wallets/index.js +0 -320
- package/dist/src/index.js +0 -21
- package/dist/src/types.js +0 -2
- /package/{dist/src → src}/components/findSocialIcon.d.ts +0 -0
- /package/{dist/src → src}/components/getSocialIcon.d.ts +0 -0
- /package/{dist/src → src}/components/index.d.ts +0 -0
- /package/{dist/src → src}/icons/browsers/index.d.ts +0 -0
- /package/{dist/src → src}/icons/chains/index.d.ts +0 -0
- /package/{dist/src → src}/icons/index.d.ts +0 -0
- /package/{dist/src → src}/icons/misc/index.d.ts +0 -0
- /package/{dist/src → src}/icons/mobile/index.d.ts +0 -0
- /package/{dist/src → src}/icons/social/index.d.ts +0 -0
- /package/{dist/src → src}/icons/wallets/index.d.ts +0 -0
- /package/{dist/src → src}/index.d.ts +0 -0
- /package/{dist/src → src}/types.d.ts +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var Iconic = require('../../Iconic.cjs');
|
|
6
|
+
|
|
7
|
+
const CaptchaWaveIcon = Iconic.createIconic({
|
|
8
|
+
alt: 'Captcha Wave',
|
|
9
|
+
iconName: 'captcha-wave',
|
|
10
|
+
sourcePath: 'icons/misc/captcha-wave.svg',
|
|
11
|
+
});
|
|
12
|
+
const UserProfileIcon = Iconic.createIconic({
|
|
13
|
+
alt: 'User Profile',
|
|
14
|
+
iconName: 'user-profile',
|
|
15
|
+
sourcePath: 'icons/misc/user-profile.svg',
|
|
16
|
+
});
|
|
17
|
+
const ArrowSendIcon = Iconic.createIconic({
|
|
18
|
+
alt: 'Arrow Send',
|
|
19
|
+
iconName: 'arrow-send',
|
|
20
|
+
sourcePath: 'icons/misc/arrow-send.svg',
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
exports.ArrowSendIcon = ArrowSendIcon;
|
|
24
|
+
exports.CaptchaWaveIcon = CaptchaWaveIcon;
|
|
25
|
+
exports.UserProfileIcon = UserProfileIcon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createIconic } from '../../Iconic.js';
|
|
2
|
+
|
|
3
|
+
const CaptchaWaveIcon = createIconic({
|
|
4
|
+
alt: 'Captcha Wave',
|
|
5
|
+
iconName: 'captcha-wave',
|
|
6
|
+
sourcePath: 'icons/misc/captcha-wave.svg',
|
|
7
|
+
});
|
|
8
|
+
const UserProfileIcon = createIconic({
|
|
9
|
+
alt: 'User Profile',
|
|
10
|
+
iconName: 'user-profile',
|
|
11
|
+
sourcePath: 'icons/misc/user-profile.svg',
|
|
12
|
+
});
|
|
13
|
+
const ArrowSendIcon = createIconic({
|
|
14
|
+
alt: 'Arrow Send',
|
|
15
|
+
iconName: 'arrow-send',
|
|
16
|
+
sourcePath: 'icons/misc/arrow-send.svg',
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
export { ArrowSendIcon, CaptchaWaveIcon, UserProfileIcon };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var Iconic = require('../../Iconic.cjs');
|
|
6
|
+
|
|
7
|
+
const AppleIcon = Iconic.createIconic({
|
|
8
|
+
alt: 'Apple',
|
|
9
|
+
iconName: 'apple',
|
|
10
|
+
sourcePath: 'icons/mobile/apple.svg',
|
|
11
|
+
});
|
|
12
|
+
const AndroidIcon = Iconic.createIconic({
|
|
13
|
+
alt: 'Android',
|
|
14
|
+
iconName: 'android',
|
|
15
|
+
sourcePath: 'icons/mobile/android.svg',
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
exports.AndroidIcon = AndroidIcon;
|
|
19
|
+
exports.AppleIcon = AppleIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { createIconic } from '../../Iconic.js';
|
|
2
|
+
|
|
3
|
+
const AppleIcon = createIconic({
|
|
4
|
+
alt: 'Apple',
|
|
5
|
+
iconName: 'apple',
|
|
6
|
+
sourcePath: 'icons/mobile/apple.svg',
|
|
7
|
+
});
|
|
8
|
+
const AndroidIcon = createIconic({
|
|
9
|
+
alt: 'Android',
|
|
10
|
+
iconName: 'android',
|
|
11
|
+
sourcePath: 'icons/mobile/android.svg',
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
export { AndroidIcon, AppleIcon };
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var Iconic = require('../../Iconic.cjs');
|
|
6
|
+
|
|
7
|
+
const BitbucketIcon = Iconic.createIconic({
|
|
8
|
+
alt: 'Bitbucket',
|
|
9
|
+
iconName: 'bitbucket',
|
|
10
|
+
sourcePath: 'icons/social/bitbucket.svg',
|
|
11
|
+
});
|
|
12
|
+
const DiscordIcon = Iconic.createIconic({
|
|
13
|
+
alt: 'Discord',
|
|
14
|
+
iconName: 'discord',
|
|
15
|
+
sourcePath: 'icons/social/discord.svg',
|
|
16
|
+
});
|
|
17
|
+
const FacebookIcon = Iconic.createIconic({
|
|
18
|
+
alt: 'Facebook',
|
|
19
|
+
iconName: 'facebook',
|
|
20
|
+
sourcePath: 'icons/social/facebook.svg',
|
|
21
|
+
});
|
|
22
|
+
const GithubIcon = Iconic.createIconic({
|
|
23
|
+
alt: 'Github',
|
|
24
|
+
iconName: 'github',
|
|
25
|
+
sourcePath: 'icons/social/github.svg',
|
|
26
|
+
});
|
|
27
|
+
const GithubDarkIcon = Iconic.createIconic({
|
|
28
|
+
alt: 'Github',
|
|
29
|
+
iconName: 'github-dark',
|
|
30
|
+
sourcePath: 'icons/social/github-dark.svg',
|
|
31
|
+
});
|
|
32
|
+
const GitlabIcon = Iconic.createIconic({
|
|
33
|
+
alt: 'Gitlab',
|
|
34
|
+
iconName: 'gitlab',
|
|
35
|
+
sourcePath: 'icons/social/gitlab.svg',
|
|
36
|
+
});
|
|
37
|
+
const GoogleIcon = Iconic.createIconic({
|
|
38
|
+
alt: 'Google',
|
|
39
|
+
iconName: 'google',
|
|
40
|
+
sourcePath: 'icons/social/google.svg',
|
|
41
|
+
});
|
|
42
|
+
const HelpdeskIcon = Iconic.createIconic({
|
|
43
|
+
alt: 'Helpdesk',
|
|
44
|
+
iconName: 'helpdesk',
|
|
45
|
+
sourcePath: 'icons/social/helpdesk.svg',
|
|
46
|
+
});
|
|
47
|
+
const LinkedinIcon = Iconic.createIconic({
|
|
48
|
+
alt: 'Linkedin',
|
|
49
|
+
iconName: 'linkedin',
|
|
50
|
+
sourcePath: 'icons/social/linkedin.svg',
|
|
51
|
+
});
|
|
52
|
+
const MicrosoftIcon = Iconic.createIconic({
|
|
53
|
+
alt: 'Microsoft',
|
|
54
|
+
iconName: 'microsoft',
|
|
55
|
+
sourcePath: 'icons/social/microsoft.svg',
|
|
56
|
+
});
|
|
57
|
+
const SlackIcon = Iconic.createIconic({
|
|
58
|
+
alt: 'Slack',
|
|
59
|
+
iconName: 'slack',
|
|
60
|
+
sourcePath: 'icons/social/slack.svg',
|
|
61
|
+
});
|
|
62
|
+
const TelegramIcon = Iconic.createIconic({
|
|
63
|
+
alt: 'Telegram',
|
|
64
|
+
iconName: 'telegram',
|
|
65
|
+
sourcePath: 'icons/social/telegram.svg',
|
|
66
|
+
});
|
|
67
|
+
const TwitchIcon = Iconic.createIconic({
|
|
68
|
+
alt: 'Twitch',
|
|
69
|
+
iconName: 'twitch',
|
|
70
|
+
sourcePath: 'icons/social/twitch.svg',
|
|
71
|
+
});
|
|
72
|
+
const TwitchDarkIcon = Iconic.createIconic({
|
|
73
|
+
alt: 'Twitch',
|
|
74
|
+
iconName: 'twitch-dark',
|
|
75
|
+
sourcePath: 'icons/social/twitch-dark.svg',
|
|
76
|
+
});
|
|
77
|
+
const TwitterIcon = Iconic.createIconic({
|
|
78
|
+
alt: 'Twitter',
|
|
79
|
+
iconName: 'twitter',
|
|
80
|
+
sourcePath: 'icons/social/twitter.svg',
|
|
81
|
+
});
|
|
82
|
+
const TwitterDarkIcon = Iconic.createIconic({
|
|
83
|
+
alt: 'Twitter',
|
|
84
|
+
iconName: 'twitter-dark',
|
|
85
|
+
sourcePath: 'icons/social/twitter-dark.svg',
|
|
86
|
+
});
|
|
87
|
+
const AppleSocialIcon = Iconic.createIconic({
|
|
88
|
+
alt: 'Apple',
|
|
89
|
+
iconName: 'apple',
|
|
90
|
+
sourcePath: 'icons/social/apple.svg',
|
|
91
|
+
});
|
|
92
|
+
const AppleDarkSocialIcon = Iconic.createIconic({
|
|
93
|
+
alt: 'Apple',
|
|
94
|
+
iconName: 'apple-dark',
|
|
95
|
+
sourcePath: 'icons/social/apple-dark.svg',
|
|
96
|
+
});
|
|
97
|
+
const CoinbaseSocialIcon = Iconic.createIconic({
|
|
98
|
+
alt: 'Coinbase',
|
|
99
|
+
iconName: 'coinbasesocial',
|
|
100
|
+
sourcePath: 'icons/social/coinbasesocial.svg',
|
|
101
|
+
});
|
|
102
|
+
const InstagramIcon = Iconic.createIconic({
|
|
103
|
+
alt: 'Instagram',
|
|
104
|
+
iconName: 'instagram',
|
|
105
|
+
sourcePath: 'icons/social/instagram.svg',
|
|
106
|
+
});
|
|
107
|
+
const YouTubeIcon = Iconic.createIconic({
|
|
108
|
+
alt: 'YouTube',
|
|
109
|
+
iconName: 'youtube',
|
|
110
|
+
sourcePath: 'icons/social/youtube.svg',
|
|
111
|
+
});
|
|
112
|
+
const OnePasswordIcon = Iconic.createIconic({
|
|
113
|
+
alt: 'onePassword',
|
|
114
|
+
iconName: 'one-password',
|
|
115
|
+
sourcePath: 'icons/social/onePassword.svg',
|
|
116
|
+
});
|
|
117
|
+
const OnePasswordDarkIcon = Iconic.createIconic({
|
|
118
|
+
alt: 'onePassword-dark',
|
|
119
|
+
iconName: 'one-password-dark',
|
|
120
|
+
sourcePath: 'icons/social/onePassword-dark.svg',
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
exports.AppleDarkSocialIcon = AppleDarkSocialIcon;
|
|
124
|
+
exports.AppleSocialIcon = AppleSocialIcon;
|
|
125
|
+
exports.BitbucketIcon = BitbucketIcon;
|
|
126
|
+
exports.CoinbaseSocialIcon = CoinbaseSocialIcon;
|
|
127
|
+
exports.DiscordIcon = DiscordIcon;
|
|
128
|
+
exports.FacebookIcon = FacebookIcon;
|
|
129
|
+
exports.GithubDarkIcon = GithubDarkIcon;
|
|
130
|
+
exports.GithubIcon = GithubIcon;
|
|
131
|
+
exports.GitlabIcon = GitlabIcon;
|
|
132
|
+
exports.GoogleIcon = GoogleIcon;
|
|
133
|
+
exports.HelpdeskIcon = HelpdeskIcon;
|
|
134
|
+
exports.InstagramIcon = InstagramIcon;
|
|
135
|
+
exports.LinkedinIcon = LinkedinIcon;
|
|
136
|
+
exports.MicrosoftIcon = MicrosoftIcon;
|
|
137
|
+
exports.OnePasswordDarkIcon = OnePasswordDarkIcon;
|
|
138
|
+
exports.OnePasswordIcon = OnePasswordIcon;
|
|
139
|
+
exports.SlackIcon = SlackIcon;
|
|
140
|
+
exports.TelegramIcon = TelegramIcon;
|
|
141
|
+
exports.TwitchDarkIcon = TwitchDarkIcon;
|
|
142
|
+
exports.TwitchIcon = TwitchIcon;
|
|
143
|
+
exports.TwitterDarkIcon = TwitterDarkIcon;
|
|
144
|
+
exports.TwitterIcon = TwitterIcon;
|
|
145
|
+
exports.YouTubeIcon = YouTubeIcon;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { createIconic } from '../../Iconic.js';
|
|
2
|
+
|
|
3
|
+
const BitbucketIcon = createIconic({
|
|
4
|
+
alt: 'Bitbucket',
|
|
5
|
+
iconName: 'bitbucket',
|
|
6
|
+
sourcePath: 'icons/social/bitbucket.svg',
|
|
7
|
+
});
|
|
8
|
+
const DiscordIcon = createIconic({
|
|
9
|
+
alt: 'Discord',
|
|
10
|
+
iconName: 'discord',
|
|
11
|
+
sourcePath: 'icons/social/discord.svg',
|
|
12
|
+
});
|
|
13
|
+
const FacebookIcon = createIconic({
|
|
14
|
+
alt: 'Facebook',
|
|
15
|
+
iconName: 'facebook',
|
|
16
|
+
sourcePath: 'icons/social/facebook.svg',
|
|
17
|
+
});
|
|
18
|
+
const GithubIcon = createIconic({
|
|
19
|
+
alt: 'Github',
|
|
20
|
+
iconName: 'github',
|
|
21
|
+
sourcePath: 'icons/social/github.svg',
|
|
22
|
+
});
|
|
23
|
+
const GithubDarkIcon = createIconic({
|
|
24
|
+
alt: 'Github',
|
|
25
|
+
iconName: 'github-dark',
|
|
26
|
+
sourcePath: 'icons/social/github-dark.svg',
|
|
27
|
+
});
|
|
28
|
+
const GitlabIcon = createIconic({
|
|
29
|
+
alt: 'Gitlab',
|
|
30
|
+
iconName: 'gitlab',
|
|
31
|
+
sourcePath: 'icons/social/gitlab.svg',
|
|
32
|
+
});
|
|
33
|
+
const GoogleIcon = createIconic({
|
|
34
|
+
alt: 'Google',
|
|
35
|
+
iconName: 'google',
|
|
36
|
+
sourcePath: 'icons/social/google.svg',
|
|
37
|
+
});
|
|
38
|
+
const HelpdeskIcon = createIconic({
|
|
39
|
+
alt: 'Helpdesk',
|
|
40
|
+
iconName: 'helpdesk',
|
|
41
|
+
sourcePath: 'icons/social/helpdesk.svg',
|
|
42
|
+
});
|
|
43
|
+
const LinkedinIcon = createIconic({
|
|
44
|
+
alt: 'Linkedin',
|
|
45
|
+
iconName: 'linkedin',
|
|
46
|
+
sourcePath: 'icons/social/linkedin.svg',
|
|
47
|
+
});
|
|
48
|
+
const MicrosoftIcon = createIconic({
|
|
49
|
+
alt: 'Microsoft',
|
|
50
|
+
iconName: 'microsoft',
|
|
51
|
+
sourcePath: 'icons/social/microsoft.svg',
|
|
52
|
+
});
|
|
53
|
+
const SlackIcon = createIconic({
|
|
54
|
+
alt: 'Slack',
|
|
55
|
+
iconName: 'slack',
|
|
56
|
+
sourcePath: 'icons/social/slack.svg',
|
|
57
|
+
});
|
|
58
|
+
const TelegramIcon = createIconic({
|
|
59
|
+
alt: 'Telegram',
|
|
60
|
+
iconName: 'telegram',
|
|
61
|
+
sourcePath: 'icons/social/telegram.svg',
|
|
62
|
+
});
|
|
63
|
+
const TwitchIcon = createIconic({
|
|
64
|
+
alt: 'Twitch',
|
|
65
|
+
iconName: 'twitch',
|
|
66
|
+
sourcePath: 'icons/social/twitch.svg',
|
|
67
|
+
});
|
|
68
|
+
const TwitchDarkIcon = createIconic({
|
|
69
|
+
alt: 'Twitch',
|
|
70
|
+
iconName: 'twitch-dark',
|
|
71
|
+
sourcePath: 'icons/social/twitch-dark.svg',
|
|
72
|
+
});
|
|
73
|
+
const TwitterIcon = createIconic({
|
|
74
|
+
alt: 'Twitter',
|
|
75
|
+
iconName: 'twitter',
|
|
76
|
+
sourcePath: 'icons/social/twitter.svg',
|
|
77
|
+
});
|
|
78
|
+
const TwitterDarkIcon = createIconic({
|
|
79
|
+
alt: 'Twitter',
|
|
80
|
+
iconName: 'twitter-dark',
|
|
81
|
+
sourcePath: 'icons/social/twitter-dark.svg',
|
|
82
|
+
});
|
|
83
|
+
const AppleSocialIcon = createIconic({
|
|
84
|
+
alt: 'Apple',
|
|
85
|
+
iconName: 'apple',
|
|
86
|
+
sourcePath: 'icons/social/apple.svg',
|
|
87
|
+
});
|
|
88
|
+
const AppleDarkSocialIcon = createIconic({
|
|
89
|
+
alt: 'Apple',
|
|
90
|
+
iconName: 'apple-dark',
|
|
91
|
+
sourcePath: 'icons/social/apple-dark.svg',
|
|
92
|
+
});
|
|
93
|
+
const CoinbaseSocialIcon = createIconic({
|
|
94
|
+
alt: 'Coinbase',
|
|
95
|
+
iconName: 'coinbasesocial',
|
|
96
|
+
sourcePath: 'icons/social/coinbasesocial.svg',
|
|
97
|
+
});
|
|
98
|
+
const InstagramIcon = createIconic({
|
|
99
|
+
alt: 'Instagram',
|
|
100
|
+
iconName: 'instagram',
|
|
101
|
+
sourcePath: 'icons/social/instagram.svg',
|
|
102
|
+
});
|
|
103
|
+
const YouTubeIcon = createIconic({
|
|
104
|
+
alt: 'YouTube',
|
|
105
|
+
iconName: 'youtube',
|
|
106
|
+
sourcePath: 'icons/social/youtube.svg',
|
|
107
|
+
});
|
|
108
|
+
const OnePasswordIcon = createIconic({
|
|
109
|
+
alt: 'onePassword',
|
|
110
|
+
iconName: 'one-password',
|
|
111
|
+
sourcePath: 'icons/social/onePassword.svg',
|
|
112
|
+
});
|
|
113
|
+
const OnePasswordDarkIcon = createIconic({
|
|
114
|
+
alt: 'onePassword-dark',
|
|
115
|
+
iconName: 'one-password-dark',
|
|
116
|
+
sourcePath: 'icons/social/onePassword-dark.svg',
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialIcon, DiscordIcon, FacebookIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
|