@dynamic-labs/iconic 0.1.6 → 0.1.8
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/dist/package.json +1 -1
- package/dist/src/icons/index.d.ts +1 -0
- package/dist/src/icons/index.js +1 -0
- package/dist/src/icons/misc/index.d.ts +3 -0
- package/dist/src/icons/misc/index.js +14 -0
- package/dist/src/icons/wallets/index.d.ts +1 -0
- package/dist/src/icons/wallets/index.js +6 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
package/dist/src/icons/index.js
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserProfileIcon = exports.CaptchaWaveIcon = void 0;
|
|
4
|
+
const Iconic_1 = require("../../Iconic");
|
|
5
|
+
exports.CaptchaWaveIcon = (0, Iconic_1.createIconic)({
|
|
6
|
+
iconName: 'captcha-wave',
|
|
7
|
+
alt: 'Captcha Wave',
|
|
8
|
+
sourcePath: 'icons/misc/captcha-wave.svg'
|
|
9
|
+
});
|
|
10
|
+
exports.UserProfileIcon = (0, Iconic_1.createIconic)({
|
|
11
|
+
iconName: 'user-profile',
|
|
12
|
+
alt: 'User Profile',
|
|
13
|
+
sourcePath: 'icons/misc/user-profile.svg'
|
|
14
|
+
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WalletConnectIcon = exports.VenlyIcon = exports.TerraIcon = exports.StrokeIcon = exports.SolflareIcon = exports.SlopeIcon = exports.RainbowIcon = exports.PhantomIcon = exports.MyalgoIcon = exports.MissingIcon = exports.MetaMaskIcon = exports.MaticIcon = exports.LilicoIcon = exports.LedgerIcon = exports.InjectedWalletIcon = exports.GlowIcon = exports.GamestopIcon = exports.FrameIcon = exports.FortmaticIcon = exports.FlowIcon = exports.ExodusIcon = exports.SignInWithEmailIcon = exports.DawnIcon = exports.DapperIcon = exports.CoinbaseIcon = exports.BraavosIcon = exports.BloctoIcon = exports.ArgentXIcon = exports.AlgorandIcon = void 0;
|
|
3
|
+
exports.MagicLinkIcon = exports.WalletConnectIcon = exports.VenlyIcon = exports.TerraIcon = exports.StrokeIcon = exports.SolflareIcon = exports.SlopeIcon = exports.RainbowIcon = exports.PhantomIcon = exports.MyalgoIcon = exports.MissingIcon = exports.MetaMaskIcon = exports.MaticIcon = exports.LilicoIcon = exports.LedgerIcon = exports.InjectedWalletIcon = exports.GlowIcon = exports.GamestopIcon = exports.FrameIcon = exports.FortmaticIcon = exports.FlowIcon = exports.ExodusIcon = exports.SignInWithEmailIcon = exports.DawnIcon = exports.DapperIcon = exports.CoinbaseIcon = exports.BraavosIcon = exports.BloctoIcon = exports.ArgentXIcon = exports.AlgorandIcon = void 0;
|
|
4
4
|
const Iconic_1 = require("../../Iconic");
|
|
5
5
|
exports.AlgorandIcon = (0, Iconic_1.createIconic)({
|
|
6
6
|
iconName: 'algorand',
|
|
@@ -147,3 +147,8 @@ exports.WalletConnectIcon = (0, Iconic_1.createIconic)({
|
|
|
147
147
|
alt: 'Wallet Connect Wallet',
|
|
148
148
|
sourcePath: 'icons/wallets/walletconnect.svg'
|
|
149
149
|
});
|
|
150
|
+
exports.MagicLinkIcon = (0, Iconic_1.createIconic)({
|
|
151
|
+
iconName: 'magiclink',
|
|
152
|
+
alt: 'Magic Link Wallet',
|
|
153
|
+
sourcePath: 'icons/wallets/magic-link.svg'
|
|
154
|
+
});
|