@dynamic-labs/iconic 4.5.3 → 4.6.1

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 CHANGED
@@ -1,4 +1,29 @@
1
1
 
2
+ ### [4.6.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.6.0...v4.6.1) (2025-02-11)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * do not show undefined subdomains ([#8060](https://github.com/dynamic-labs/dynamic-auth/issues/8060)) ([ec7ca3d](https://github.com/dynamic-labs/dynamic-auth/commit/ec7ca3d1284422f54f3a1275e1983d50912bcc34))
8
+ * ensure project settings is present on is-cookie-enabled ([#8057](https://github.com/dynamic-labs/dynamic-auth/issues/8057)) ([81c6495](https://github.com/dynamic-labs/dynamic-auth/commit/81c64957031633c00c9e5ecaf304269605202abb))
9
+ * prevent user profile widget from automatically opening when linking a new wallet ([#8020](https://github.com/dynamic-labs/dynamic-auth/issues/8020)) ([4f05ac9](https://github.com/dynamic-labs/dynamic-auth/commit/4f05ac9fdc5a2fc415567dff1b33ddffd0478804))
10
+ * project settings loading and cookie setting check ([#8056](https://github.com/dynamic-labs/dynamic-auth/issues/8056)) ([457a298](https://github.com/dynamic-labs/dynamic-auth/commit/457a298ff11387ca858f85fb19d6c421e02fcc88))
11
+
12
+ ## [4.6.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.5.3...v4.6.0) (2025-02-10)
13
+
14
+
15
+ ### Features
16
+
17
+ * expose method to refetch project settings ([#8048](https://github.com/dynamic-labs/dynamic-auth/issues/8048)) ([10af30c](https://github.com/dynamic-labs/dynamic-auth/commit/10af30cb5caf39b95eaae39ad831466f6f73b98a))
18
+ * add new hook to delete user ([#8013](https://github.com/dynamic-labs/dynamic-auth/issues/8013)) ([c312285](https://github.com/dynamic-labs/dynamic-auth/commit/c312285b4e4663eedf83a4c8c043715ba6c1a9ed))
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * add memos and fix state updates to prevent rerenders ([#8024](https://github.com/dynamic-labs/dynamic-auth/issues/8024)) ([89504c0](https://github.com/dynamic-labs/dynamic-auth/commit/89504c0efa29ed846a55d7eb3213a1b9b070368a))
24
+ * back button not working properly in the farcaster connect view ([#8051](https://github.com/dynamic-labs/dynamic-auth/issues/8051)) ([5fe4631](https://github.com/dynamic-labs/dynamic-auth/commit/5fe463105ce43dd7ec31cd90ee6922bd917ed9de))
25
+ * update wallet address when switching networks in cosmos ([#8016](https://github.com/dynamic-labs/dynamic-auth/issues/8016)) ([2925784](https://github.com/dynamic-labs/dynamic-auth/commit/29257846fa99600a67cf010447248451cd17ae60))
26
+
2
27
  ### [4.5.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.5.2...v4.5.3) (2025-02-09)
3
28
 
4
29
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.5.3";
6
+ var version = "4.6.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.5.3";
2
+ var version = "4.6.1";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "4.5.3",
3
+ "version": "4.6.1",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -22,8 +22,8 @@
22
22
  "react-dom": "^18.0.0"
23
23
  },
24
24
  "dependencies": {
25
- "@dynamic-labs/assert-package-version": "4.5.3",
26
- "@dynamic-labs/logger": "4.5.3",
25
+ "@dynamic-labs/assert-package-version": "4.6.1",
26
+ "@dynamic-labs/logger": "4.6.1",
27
27
  "sharp": "0.33.2"
28
28
  }
29
29
  }
@@ -1,6 +1,7 @@
1
1
  export * from './browsers';
2
2
  export * from './chains';
3
+ export * from './onramps';
4
+ export * from './social';
3
5
  export * from './wallets';
4
6
  export * from './mobile';
5
- export * from './social';
6
7
  export * from './misc';
@@ -0,0 +1,20 @@
1
+ 'use client'
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, '__esModule', { value: true });
5
+
6
+ var Iconic = require('../../Iconic.cjs');
7
+
8
+ const BanxaIcon = Iconic.createIconic({
9
+ alt: 'Banxa',
10
+ iconName: 'banxa',
11
+ sourcePath: 'icons/onramps/banxa.svg',
12
+ });
13
+ const CoinbasePayIcon = Iconic.createIconic({
14
+ alt: 'Coinbase Pay',
15
+ iconName: 'coinbase-pay',
16
+ sourcePath: 'icons/onramps/coinbase-pay.svg',
17
+ });
18
+
19
+ exports.BanxaIcon = BanxaIcon;
20
+ exports.CoinbasePayIcon = CoinbasePayIcon;
@@ -0,0 +1,3 @@
1
+ import { type Iconic } from '../../Iconic';
2
+ export declare const BanxaIcon: Iconic;
3
+ export declare const CoinbasePayIcon: Iconic;
@@ -0,0 +1,15 @@
1
+ 'use client'
2
+ import { createIconic } from '../../Iconic.js';
3
+
4
+ const BanxaIcon = createIconic({
5
+ alt: 'Banxa',
6
+ iconName: 'banxa',
7
+ sourcePath: 'icons/onramps/banxa.svg',
8
+ });
9
+ const CoinbasePayIcon = createIconic({
10
+ alt: 'Coinbase Pay',
11
+ iconName: 'coinbase-pay',
12
+ sourcePath: 'icons/onramps/coinbase-pay.svg',
13
+ });
14
+
15
+ export { BanxaIcon, CoinbasePayIcon };
package/src/index.cjs CHANGED
@@ -7,10 +7,11 @@ var assertPackageVersion = require('@dynamic-labs/assert-package-version');
7
7
  var _package = require('../package.cjs');
8
8
  var index = require('./icons/browsers/index.cjs');
9
9
  var index$1 = require('./icons/chains/index.cjs');
10
- var index$2 = require('./icons/wallets/index.cjs');
11
- var index$3 = require('./icons/mobile/index.cjs');
12
- var index$4 = require('./icons/social/index.cjs');
13
- var index$5 = require('./icons/misc/index.cjs');
10
+ var index$2 = require('./icons/onramps/index.cjs');
11
+ var index$3 = require('./icons/social/index.cjs');
12
+ var index$4 = require('./icons/wallets/index.cjs');
13
+ var index$5 = require('./icons/mobile/index.cjs');
14
+ var index$6 = require('./icons/misc/index.cjs');
14
15
  var SocialIcon = require('./components/SocialIcon.cjs');
15
16
  var getSocialIcon = require('./components/getSocialIcon.cjs');
16
17
  var findSocialIcon = require('./components/findSocialIcon.cjs');
@@ -46,125 +47,127 @@ exports.SeiIcon = index$1.SeiIcon;
46
47
  exports.SolanaIcon = index$1.SolanaIcon;
47
48
  exports.StarknetIcon = index$1.StarknetIcon;
48
49
  exports.ZkSyncIcon = index$1.ZkSyncIcon;
49
- exports.AbstractIcon = index$2.AbstractIcon;
50
- exports.AmbireIcon = index$2.AmbireIcon;
51
- exports.ArgentMobile = index$2.ArgentMobile;
52
- exports.ArgentWebWallet = index$2.ArgentWebWallet;
53
- exports.ArgentXIcon = index$2.ArgentXIcon;
54
- exports.BackpackIcon = index$2.BackpackIcon;
55
- exports.BinanceIcon = index$2.BinanceIcon;
56
- exports.BitGetWalletIcon = index$2.BitGetWalletIcon;
57
- exports.BitPayIcon = index$2.BitPayIcon;
58
- exports.BloctoIcon = index$2.BloctoIcon;
59
- exports.BraavosIcon = index$2.BraavosIcon;
60
- exports.CloverWalletIcon = index$2.CloverWalletIcon;
61
- exports.Coin98Icon = index$2.Coin98Icon;
62
- exports.CoinbaseIcon = index$2.CoinbaseIcon;
63
- exports.CoinbaseWaaSIcon = index$2.CoinbaseWaaSIcon;
64
- exports.CryptoIcon = index$2.CryptoIcon;
65
- exports.DapperIcon = index$2.DapperIcon;
66
- exports.DawnIcon = index$2.DawnIcon;
67
- exports.DefaultIcon = index$2.DefaultIcon;
68
- exports.DynamicWaasIcon = index$2.DynamicWaasIcon;
69
- exports.EdenOnlineIcon = index$2.EdenOnlineIcon;
70
- exports.EmailSignIcon = index$2.EmailSignIcon;
71
- exports.ExodusIcon = index$2.ExodusIcon;
72
- exports.FireblocksIcon = index$2.FireblocksIcon;
73
- exports.FlowWalletIcon = index$2.FlowWalletIcon;
74
- exports.FordefiIcon = index$2.FordefiIcon;
75
- exports.FortmaticIcon = index$2.FortmaticIcon;
76
- exports.FrameIcon = index$2.FrameIcon;
77
- exports.GamestopIcon = index$2.GamestopIcon;
78
- exports.GlowIcon = index$2.GlowIcon;
79
- exports.ImTokenWallet = index$2.ImTokenWallet;
80
- exports.InjectedWalletIcon = index$2.InjectedWalletIcon;
81
- exports.IntersendIcon = index$2.IntersendIcon;
82
- exports.KeplrIcon = index$2.KeplrIcon;
83
- exports.LeatherIcon = index$2.LeatherIcon;
84
- exports.LedgerIcon = index$2.LedgerIcon;
85
- exports.LilicoIcon = index$2.LilicoIcon;
86
- exports.LinenIcon = index$2.LinenIcon;
87
- exports.MagicEdenIcon = index$2.MagicEdenIcon;
88
- exports.MagicLinkIcon = index$2.MagicLinkIcon;
89
- exports.MathWalletIcon = index$2.MathWalletIcon;
90
- exports.MaticIcon = index$2.MaticIcon;
91
- exports.MetaMaskIcon = index$2.MetaMaskIcon;
92
- exports.MetaMaskStarknetIcon = index$2.MetaMaskStarknetIcon;
93
- exports.MissingIcon = index$2.MissingIcon;
94
- exports.MyalgoIcon = index$2.MyalgoIcon;
95
- exports.NightlyIcon = index$2.NightlyIcon;
96
- exports.OkxIcon = index$2.OkxIcon;
97
- exports.OmniIcon = index$2.OmniIcon;
98
- exports.OneInchIcon = index$2.OneInchIcon;
99
- exports.OneKeyIcon = index$2.OneKeyIcon;
100
- exports.OpeanSeaIcon = index$2.OpeanSeaIcon;
101
- exports.OylIcon = index$2.OylIcon;
102
- exports.PasskeysWalletIcon = index$2.PasskeysWalletIcon;
103
- exports.PeraIcon = index$2.PeraIcon;
104
- exports.PhantomIcon = index$2.PhantomIcon;
105
- exports.RabbyIcon = index$2.RabbyIcon;
106
- exports.RainbowIcon = index$2.RainbowIcon;
107
- exports.SafeIcon = index$2.SafeIcon;
108
- exports.SequenceIcon = index$2.SequenceIcon;
109
- exports.SignInWithEmailIcon = index$2.SignInWithEmailIcon;
110
- exports.SmartWalletIcon = index$2.SmartWalletIcon;
111
- exports.SolflareIcon = index$2.SolflareIcon;
112
- exports.SpotIcon = index$2.SpotIcon;
113
- exports.StrokeIcon = index$2.StrokeIcon;
114
- exports.SuperbIcon = index$2.SuperbIcon;
115
- exports.TallyCashIcon = index$2.TallyCashIcon;
116
- exports.TerraIcon = index$2.TerraIcon;
117
- exports.TorusIcon = index$2.TorusIcon;
118
- exports.TrustIcon = index$2.TrustIcon;
119
- exports.TurnkeyIcon = index$2.TurnkeyIcon;
120
- exports.UnisatIcon = index$2.UnisatIcon;
121
- exports.UnknownWalletIcon = index$2.UnknownWalletIcon;
122
- exports.UnstoppableIcon = index$2.UnstoppableIcon;
123
- exports.VenlyIcon = index$2.VenlyIcon;
124
- exports.WalletConnectIcon = index$2.WalletConnectIcon;
125
- exports.XverseEdenIcon = index$2.XverseEdenIcon;
126
- exports.ZengoIcon = index$2.ZengoIcon;
127
- exports.ZeroDevIcon = index$2.ZeroDevIcon;
128
- exports.AndroidIcon = index$3.AndroidIcon;
129
- exports.AppleIcon = index$3.AppleIcon;
130
- exports.AppleDarkSocialIcon = index$4.AppleDarkSocialIcon;
131
- exports.AppleSocialIcon = index$4.AppleSocialIcon;
132
- exports.BitbucketIcon = index$4.BitbucketIcon;
133
- exports.CoinbaseSocialDarkIcon = index$4.CoinbaseSocialDarkIcon;
134
- exports.CoinbaseSocialIcon = index$4.CoinbaseSocialIcon;
135
- exports.DiscordIcon = index$4.DiscordIcon;
136
- exports.EpicGamesDarkIcon = index$4.EpicGamesDarkIcon;
137
- exports.EpicGamesIcon = index$4.EpicGamesIcon;
138
- exports.FacebookIcon = index$4.FacebookIcon;
139
- exports.FarcasterIcon = index$4.FarcasterIcon;
140
- exports.GithubDarkIcon = index$4.GithubDarkIcon;
141
- exports.GithubIcon = index$4.GithubIcon;
142
- exports.GitlabIcon = index$4.GitlabIcon;
143
- exports.GoogleIcon = index$4.GoogleIcon;
144
- exports.HelpdeskIcon = index$4.HelpdeskIcon;
145
- exports.InstagramIcon = index$4.InstagramIcon;
146
- exports.LineIcon = index$4.LineIcon;
147
- exports.LinkedinIcon = index$4.LinkedinIcon;
148
- exports.MicrosoftIcon = index$4.MicrosoftIcon;
149
- exports.OnePasswordDarkIcon = index$4.OnePasswordDarkIcon;
150
- exports.OnePasswordIcon = index$4.OnePasswordIcon;
151
- exports.ShopifyIcon = index$4.ShopifyIcon;
152
- exports.SlackIcon = index$4.SlackIcon;
153
- exports.SpotifyDarkIcon = index$4.SpotifyDarkIcon;
154
- exports.SpotifyIcon = index$4.SpotifyIcon;
155
- exports.SteamDarkIcon = index$4.SteamDarkIcon;
156
- exports.SteamIcon = index$4.SteamIcon;
157
- exports.TelegramIcon = index$4.TelegramIcon;
158
- exports.TikTokDarkIcon = index$4.TikTokDarkIcon;
159
- exports.TikTokIcon = index$4.TikTokIcon;
160
- exports.TwitchDarkIcon = index$4.TwitchDarkIcon;
161
- exports.TwitchIcon = index$4.TwitchIcon;
162
- exports.TwitterDarkIcon = index$4.TwitterDarkIcon;
163
- exports.TwitterIcon = index$4.TwitterIcon;
164
- exports.YouTubeIcon = index$4.YouTubeIcon;
165
- exports.ArrowSendIcon = index$5.ArrowSendIcon;
166
- exports.CaptchaWaveIcon = index$5.CaptchaWaveIcon;
167
- exports.UserProfileIcon = index$5.UserProfileIcon;
50
+ exports.BanxaIcon = index$2.BanxaIcon;
51
+ exports.CoinbasePayIcon = index$2.CoinbasePayIcon;
52
+ exports.AppleDarkSocialIcon = index$3.AppleDarkSocialIcon;
53
+ exports.AppleSocialIcon = index$3.AppleSocialIcon;
54
+ exports.BitbucketIcon = index$3.BitbucketIcon;
55
+ exports.CoinbaseSocialDarkIcon = index$3.CoinbaseSocialDarkIcon;
56
+ exports.CoinbaseSocialIcon = index$3.CoinbaseSocialIcon;
57
+ exports.DiscordIcon = index$3.DiscordIcon;
58
+ exports.EpicGamesDarkIcon = index$3.EpicGamesDarkIcon;
59
+ exports.EpicGamesIcon = index$3.EpicGamesIcon;
60
+ exports.FacebookIcon = index$3.FacebookIcon;
61
+ exports.FarcasterIcon = index$3.FarcasterIcon;
62
+ exports.GithubDarkIcon = index$3.GithubDarkIcon;
63
+ exports.GithubIcon = index$3.GithubIcon;
64
+ exports.GitlabIcon = index$3.GitlabIcon;
65
+ exports.GoogleIcon = index$3.GoogleIcon;
66
+ exports.HelpdeskIcon = index$3.HelpdeskIcon;
67
+ exports.InstagramIcon = index$3.InstagramIcon;
68
+ exports.LineIcon = index$3.LineIcon;
69
+ exports.LinkedinIcon = index$3.LinkedinIcon;
70
+ exports.MicrosoftIcon = index$3.MicrosoftIcon;
71
+ exports.OnePasswordDarkIcon = index$3.OnePasswordDarkIcon;
72
+ exports.OnePasswordIcon = index$3.OnePasswordIcon;
73
+ exports.ShopifyIcon = index$3.ShopifyIcon;
74
+ exports.SlackIcon = index$3.SlackIcon;
75
+ exports.SpotifyDarkIcon = index$3.SpotifyDarkIcon;
76
+ exports.SpotifyIcon = index$3.SpotifyIcon;
77
+ exports.SteamDarkIcon = index$3.SteamDarkIcon;
78
+ exports.SteamIcon = index$3.SteamIcon;
79
+ exports.TelegramIcon = index$3.TelegramIcon;
80
+ exports.TikTokDarkIcon = index$3.TikTokDarkIcon;
81
+ exports.TikTokIcon = index$3.TikTokIcon;
82
+ exports.TwitchDarkIcon = index$3.TwitchDarkIcon;
83
+ exports.TwitchIcon = index$3.TwitchIcon;
84
+ exports.TwitterDarkIcon = index$3.TwitterDarkIcon;
85
+ exports.TwitterIcon = index$3.TwitterIcon;
86
+ exports.YouTubeIcon = index$3.YouTubeIcon;
87
+ exports.AbstractIcon = index$4.AbstractIcon;
88
+ exports.AmbireIcon = index$4.AmbireIcon;
89
+ exports.ArgentMobile = index$4.ArgentMobile;
90
+ exports.ArgentWebWallet = index$4.ArgentWebWallet;
91
+ exports.ArgentXIcon = index$4.ArgentXIcon;
92
+ exports.BackpackIcon = index$4.BackpackIcon;
93
+ exports.BinanceIcon = index$4.BinanceIcon;
94
+ exports.BitGetWalletIcon = index$4.BitGetWalletIcon;
95
+ exports.BitPayIcon = index$4.BitPayIcon;
96
+ exports.BloctoIcon = index$4.BloctoIcon;
97
+ exports.BraavosIcon = index$4.BraavosIcon;
98
+ exports.CloverWalletIcon = index$4.CloverWalletIcon;
99
+ exports.Coin98Icon = index$4.Coin98Icon;
100
+ exports.CoinbaseIcon = index$4.CoinbaseIcon;
101
+ exports.CoinbaseWaaSIcon = index$4.CoinbaseWaaSIcon;
102
+ exports.CryptoIcon = index$4.CryptoIcon;
103
+ exports.DapperIcon = index$4.DapperIcon;
104
+ exports.DawnIcon = index$4.DawnIcon;
105
+ exports.DefaultIcon = index$4.DefaultIcon;
106
+ exports.DynamicWaasIcon = index$4.DynamicWaasIcon;
107
+ exports.EdenOnlineIcon = index$4.EdenOnlineIcon;
108
+ exports.EmailSignIcon = index$4.EmailSignIcon;
109
+ exports.ExodusIcon = index$4.ExodusIcon;
110
+ exports.FireblocksIcon = index$4.FireblocksIcon;
111
+ exports.FlowWalletIcon = index$4.FlowWalletIcon;
112
+ exports.FordefiIcon = index$4.FordefiIcon;
113
+ exports.FortmaticIcon = index$4.FortmaticIcon;
114
+ exports.FrameIcon = index$4.FrameIcon;
115
+ exports.GamestopIcon = index$4.GamestopIcon;
116
+ exports.GlowIcon = index$4.GlowIcon;
117
+ exports.ImTokenWallet = index$4.ImTokenWallet;
118
+ exports.InjectedWalletIcon = index$4.InjectedWalletIcon;
119
+ exports.IntersendIcon = index$4.IntersendIcon;
120
+ exports.KeplrIcon = index$4.KeplrIcon;
121
+ exports.LeatherIcon = index$4.LeatherIcon;
122
+ exports.LedgerIcon = index$4.LedgerIcon;
123
+ exports.LilicoIcon = index$4.LilicoIcon;
124
+ exports.LinenIcon = index$4.LinenIcon;
125
+ exports.MagicEdenIcon = index$4.MagicEdenIcon;
126
+ exports.MagicLinkIcon = index$4.MagicLinkIcon;
127
+ exports.MathWalletIcon = index$4.MathWalletIcon;
128
+ exports.MaticIcon = index$4.MaticIcon;
129
+ exports.MetaMaskIcon = index$4.MetaMaskIcon;
130
+ exports.MetaMaskStarknetIcon = index$4.MetaMaskStarknetIcon;
131
+ exports.MissingIcon = index$4.MissingIcon;
132
+ exports.MyalgoIcon = index$4.MyalgoIcon;
133
+ exports.NightlyIcon = index$4.NightlyIcon;
134
+ exports.OkxIcon = index$4.OkxIcon;
135
+ exports.OmniIcon = index$4.OmniIcon;
136
+ exports.OneInchIcon = index$4.OneInchIcon;
137
+ exports.OneKeyIcon = index$4.OneKeyIcon;
138
+ exports.OpeanSeaIcon = index$4.OpeanSeaIcon;
139
+ exports.OylIcon = index$4.OylIcon;
140
+ exports.PasskeysWalletIcon = index$4.PasskeysWalletIcon;
141
+ exports.PeraIcon = index$4.PeraIcon;
142
+ exports.PhantomIcon = index$4.PhantomIcon;
143
+ exports.RabbyIcon = index$4.RabbyIcon;
144
+ exports.RainbowIcon = index$4.RainbowIcon;
145
+ exports.SafeIcon = index$4.SafeIcon;
146
+ exports.SequenceIcon = index$4.SequenceIcon;
147
+ exports.SignInWithEmailIcon = index$4.SignInWithEmailIcon;
148
+ exports.SmartWalletIcon = index$4.SmartWalletIcon;
149
+ exports.SolflareIcon = index$4.SolflareIcon;
150
+ exports.SpotIcon = index$4.SpotIcon;
151
+ exports.StrokeIcon = index$4.StrokeIcon;
152
+ exports.SuperbIcon = index$4.SuperbIcon;
153
+ exports.TallyCashIcon = index$4.TallyCashIcon;
154
+ exports.TerraIcon = index$4.TerraIcon;
155
+ exports.TorusIcon = index$4.TorusIcon;
156
+ exports.TrustIcon = index$4.TrustIcon;
157
+ exports.TurnkeyIcon = index$4.TurnkeyIcon;
158
+ exports.UnisatIcon = index$4.UnisatIcon;
159
+ exports.UnknownWalletIcon = index$4.UnknownWalletIcon;
160
+ exports.UnstoppableIcon = index$4.UnstoppableIcon;
161
+ exports.VenlyIcon = index$4.VenlyIcon;
162
+ exports.WalletConnectIcon = index$4.WalletConnectIcon;
163
+ exports.XverseEdenIcon = index$4.XverseEdenIcon;
164
+ exports.ZengoIcon = index$4.ZengoIcon;
165
+ exports.ZeroDevIcon = index$4.ZeroDevIcon;
166
+ exports.AndroidIcon = index$5.AndroidIcon;
167
+ exports.AppleIcon = index$5.AppleIcon;
168
+ exports.ArrowSendIcon = index$6.ArrowSendIcon;
169
+ exports.CaptchaWaveIcon = index$6.CaptchaWaveIcon;
170
+ exports.UserProfileIcon = index$6.UserProfileIcon;
168
171
  exports.SocialIcon = SocialIcon.SocialIcon;
169
172
  exports.getSocialIcon = getSocialIcon.getSocialIcon;
170
173
  exports.findSocialIcon = findSocialIcon.findSocialIcon;
package/src/index.js CHANGED
@@ -3,9 +3,10 @@ import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
3
3
  import { version } from '../package.js';
4
4
  export { BraveIcon, ChromeIcon, EdgeIcon, FirefoxIcon, OperaIcon, SafariIcon } from './icons/browsers/index.js';
5
5
  export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, StarknetIcon, ZkSyncIcon } from './icons/chains/index.js';
6
+ export { BanxaIcon, CoinbasePayIcon } from './icons/onramps/index.js';
7
+ export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, ShopifyIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
6
8
  export { AbstractIcon, AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, DynamicWaasIcon, EdenOnlineIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FlowWalletIcon, FordefiIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, IntersendIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, OylIcon, PasskeysWalletIcon, PeraIcon, PhantomIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnknownWalletIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';
7
9
  export { AndroidIcon, AppleIcon } from './icons/mobile/index.js';
8
- export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, ShopifyIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
9
10
  export { ArrowSendIcon, CaptchaWaveIcon, UserProfileIcon } from './icons/misc/index.js';
10
11
  export { SocialIcon } from './components/SocialIcon.js';
11
12
  export { getSocialIcon } from './components/getSocialIcon.js';