@dynamic-labs/iconic 0.1.41 → 0.1.43

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 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 (iconName should be lowercase)
4
+ 1. Add a `createIconic` component 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "A library of icons used by Dynamic Lab's SDK, served via CDN",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {
@@ -2,6 +2,7 @@ import { type Iconic } from '../../Iconic';
2
2
  export declare const AlgorandIcon: Iconic;
3
3
  export declare const ArbitrumIcon: Iconic;
4
4
  export declare const AuroraIcon: Iconic;
5
+ export declare const BaseChainIcon: Iconic;
5
6
  export declare const BnbIcon: Iconic;
6
7
  export declare const CosmosIcon: Iconic;
7
8
  export declare const OsmosisIcon: Iconic;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StarknetIcon = exports.SolanaIcon = exports.PolygonIcon = exports.PalmIcon = exports.OptimismIcon = exports.GnosisIcon = exports.FlowIcon = exports.ZkSyncIcon = exports.GoerliIcon = exports.EthereumIcon = exports.AxelarIcon = exports.OsmosisIcon = exports.CosmosIcon = exports.BnbIcon = exports.AuroraIcon = exports.ArbitrumIcon = exports.AlgorandIcon = void 0;
3
+ exports.StarknetIcon = exports.SolanaIcon = exports.PolygonIcon = exports.PalmIcon = exports.OptimismIcon = exports.GnosisIcon = exports.FlowIcon = exports.ZkSyncIcon = exports.GoerliIcon = exports.EthereumIcon = exports.AxelarIcon = exports.OsmosisIcon = exports.CosmosIcon = exports.BnbIcon = exports.BaseChainIcon = exports.AuroraIcon = exports.ArbitrumIcon = exports.AlgorandIcon = void 0;
4
4
  const Iconic_1 = require("../../Iconic");
5
5
  exports.AlgorandIcon = (0, Iconic_1.createIconic)({
6
6
  iconName: 'algorand',
@@ -17,6 +17,11 @@ exports.AuroraIcon = (0, Iconic_1.createIconic)({
17
17
  alt: 'Aurora Chain',
18
18
  sourcePath: 'icons/chains/aurora.svg'
19
19
  });
20
+ exports.BaseChainIcon = (0, Iconic_1.createIconic)({
21
+ iconName: 'base',
22
+ alt: 'Base Chain',
23
+ sourcePath: 'icons/chains/base.svg'
24
+ });
20
25
  exports.BnbIcon = (0, Iconic_1.createIconic)({
21
26
  iconName: 'bnb',
22
27
  alt: 'BNB Chain',
@@ -52,3 +52,4 @@ export declare const MagicLinkIcon: Iconic;
52
52
  export declare const TurnkeyIcon: Iconic;
53
53
  export declare const ZengoIcon: Iconic;
54
54
  export declare const SuperbIcon: Iconic;
55
+ export declare const ZeroDevIcon: Iconic;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.MagicLinkIcon = exports.WalletConnectIcon = exports.VenlyIcon = exports.UnstoppableIcon = exports.TrustIcon = exports.TorusIcon = exports.TerraIcon = exports.TallyCashIcon = exports.StrokeIcon = exports.SpotIcon = exports.SolflareIcon = exports.SlopeIcon = exports.SequenceIcon = exports.SafeIcon = exports.RainbowIcon = exports.PhantomIcon = exports.PeraIcon = exports.OpeanSeaIcon = exports.OmniIcon = exports.MyalgoIcon = exports.MissingIcon = exports.MetaMaskIcon = exports.MaticIcon = exports.LinenIcon = exports.LilicoIcon = exports.LedgerIcon = exports.KeplrIcon = exports.InjectedWalletIcon = exports.ImTokenWallet = exports.GlowIcon = exports.GamestopIcon = exports.FrameIcon = exports.FortmaticIcon = exports.FireblocksIcon = exports.ExodusIcon = exports.SignInWithEmailIcon = exports.EmailSignIcon = exports.DefaultIcon = exports.DawnIcon = exports.DapperIcon = exports.CryptoIcon = exports.CoinbaseIcon = exports.Coin90Icon = exports.BraavosIcon = exports.BloctoIcon = exports.BitPayIcon = exports.BinanceIcon = exports.BackpackIcon = exports.ArgentXIcon = exports.OneInchIcon = void 0;
4
- exports.SuperbIcon = exports.ZengoIcon = exports.TurnkeyIcon = void 0;
4
+ exports.ZeroDevIcon = exports.SuperbIcon = exports.ZengoIcon = exports.TurnkeyIcon = void 0;
5
5
  const Iconic_1 = require("../../Iconic");
6
6
  exports.OneInchIcon = (0, Iconic_1.createIconic)({
7
7
  iconName: '1inch.svg',
@@ -268,3 +268,8 @@ exports.SuperbIcon = (0, Iconic_1.createIconic)({
268
268
  alt: 'Superb Wallet',
269
269
  sourcePath: 'icons/wallets/superb.svg'
270
270
  });
271
+ exports.ZeroDevIcon = (0, Iconic_1.createIconic)({
272
+ iconName: 'zerodev',
273
+ alt: 'ZeroDev',
274
+ sourcePath: 'icons/wallets/embedded-wallet.svg'
275
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "A library of icons used by Dynamic Lab's SDK, served via CDN",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {