@api3/logos 1.0.20 → 1.0.22
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/cjs/SymbolLogo.js +6 -0
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +2 -2
- package/dist/esm/SymbolLogo.js +6 -0
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/logos/chain/Chain1439.svg +6 -11
- package/dist/logos/chain/Chain737373.svg +1 -1
- package/dist/logos/symbol/Ath.svg +9 -0
- package/dist/logos/symbol/Slp.svg +15 -0
- package/package.json +6 -6
package/dist/cjs/SymbolLogo.js
CHANGED
|
@@ -20,6 +20,7 @@ const SymbolPxEth = require('../logos/symbol/Pxeth.svg');
|
|
|
20
20
|
const SymbolAr = require('../logos/symbol/Ar.svg');
|
|
21
21
|
const SymbolArb = require('../logos/symbol/Arb.svg');
|
|
22
22
|
const SymbolAstr = require('../logos/symbol/Astr.svg');
|
|
23
|
+
const SymbolAth = require('../logos/symbol/Ath.svg');
|
|
23
24
|
const SymbolAtom = require('../logos/symbol/Atom.svg');
|
|
24
25
|
const SymbolAusd = require('../logos/symbol/Ausd.svg');
|
|
25
26
|
const SymbolAvax = require('../logos/symbol/Avax.svg');
|
|
@@ -156,6 +157,7 @@ const SymbolFrxEth = require('../logos/symbol/Frxeth.svg');
|
|
|
156
157
|
const SymbolSfrxUsd = require('../logos/symbol/Sfrxusd.svg');
|
|
157
158
|
const SymbolShib = require('../logos/symbol/Shib.svg');
|
|
158
159
|
const SymbolSlisBnb = require('../logos/symbol/Slisbnb.svg');
|
|
160
|
+
const SymbolSlp = require('../logos/symbol/Slp.svg');
|
|
159
161
|
const SymbolSnx = require('../logos/symbol/Snx.svg');
|
|
160
162
|
const SymbolSol = require('../logos/symbol/Sol.svg');
|
|
161
163
|
const SymbolSolvBtc = require('../logos/symbol/Solvbtc.svg');
|
|
@@ -268,6 +270,8 @@ function SymbolLogo(id, light = false) {
|
|
|
268
270
|
return SymbolArb;
|
|
269
271
|
case "astr":
|
|
270
272
|
return SymbolAstr;
|
|
273
|
+
case "ath":
|
|
274
|
+
return SymbolAth;
|
|
271
275
|
case "atom":
|
|
272
276
|
return SymbolAtom;
|
|
273
277
|
case "ausd":
|
|
@@ -540,6 +544,8 @@ function SymbolLogo(id, light = false) {
|
|
|
540
544
|
return SymbolShib;
|
|
541
545
|
case "slisbnb":
|
|
542
546
|
return SymbolSlisBnb;
|
|
547
|
+
case "slp":
|
|
548
|
+
return SymbolSlp;
|
|
543
549
|
case "snx":
|
|
544
550
|
return SymbolSnx;
|
|
545
551
|
case "sol":
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
2
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
|
-
export { default as ChainLogo } from './ChainLogo.js';
|
|
4
|
-
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
5
3
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
6
4
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
|
|
2
2
|
module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
|
|
3
|
-
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
4
|
-
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
|
5
3
|
module.exports.SymbolLogo = require('./SymbolLogo.js');
|
|
6
4
|
module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
|
|
5
|
+
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
6
|
+
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
package/dist/esm/SymbolLogo.js
CHANGED
|
@@ -20,6 +20,7 @@ import SymbolPxEth from '../logos/symbol/Pxeth.svg';
|
|
|
20
20
|
import SymbolAr from '../logos/symbol/Ar.svg';
|
|
21
21
|
import SymbolArb from '../logos/symbol/Arb.svg';
|
|
22
22
|
import SymbolAstr from '../logos/symbol/Astr.svg';
|
|
23
|
+
import SymbolAth from '../logos/symbol/Ath.svg';
|
|
23
24
|
import SymbolAtom from '../logos/symbol/Atom.svg';
|
|
24
25
|
import SymbolAusd from '../logos/symbol/Ausd.svg';
|
|
25
26
|
import SymbolAvax from '../logos/symbol/Avax.svg';
|
|
@@ -156,6 +157,7 @@ import SymbolFrxEth from '../logos/symbol/Frxeth.svg';
|
|
|
156
157
|
import SymbolSfrxUsd from '../logos/symbol/Sfrxusd.svg';
|
|
157
158
|
import SymbolShib from '../logos/symbol/Shib.svg';
|
|
158
159
|
import SymbolSlisBnb from '../logos/symbol/Slisbnb.svg';
|
|
160
|
+
import SymbolSlp from '../logos/symbol/Slp.svg';
|
|
159
161
|
import SymbolSnx from '../logos/symbol/Snx.svg';
|
|
160
162
|
import SymbolSol from '../logos/symbol/Sol.svg';
|
|
161
163
|
import SymbolSolvBtc from '../logos/symbol/Solvbtc.svg';
|
|
@@ -268,6 +270,8 @@ function SymbolLogo(id, light = false) {
|
|
|
268
270
|
return SymbolArb;
|
|
269
271
|
case "astr":
|
|
270
272
|
return SymbolAstr;
|
|
273
|
+
case "ath":
|
|
274
|
+
return SymbolAth;
|
|
271
275
|
case "atom":
|
|
272
276
|
return SymbolAtom;
|
|
273
277
|
case "ausd":
|
|
@@ -540,6 +544,8 @@ function SymbolLogo(id, light = false) {
|
|
|
540
544
|
return SymbolShib;
|
|
541
545
|
case "slisbnb":
|
|
542
546
|
return SymbolSlisBnb;
|
|
547
|
+
case "slp":
|
|
548
|
+
return SymbolSlp;
|
|
543
549
|
case "snx":
|
|
544
550
|
return SymbolSnx;
|
|
545
551
|
case "sol":
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
2
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
1
3
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
2
4
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
3
5
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
4
6
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
5
|
-
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
|
-
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
2
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
1
3
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
2
4
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
3
5
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
4
6
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
5
|
-
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
|
-
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
</mask>
|
|
8
|
-
<g stroke="null" mask="url(#Chain1439_svg__svg_9)">
|
|
9
|
-
<path fill="#8E9BB2" stroke="null" d="m13.70269,4.07846l-0.04865,0.0973c1.68647,0.72972 2.64322,2.23782 2.64322,3.89186c0,1.78377 -1.16756,3.40537 -3.43781,4.78374l-0.37297,0.22703c-1.70269,1.03783 -2.56214,2.20539 -2.56214,3.61618c0,1.8162 1.42701,3.14589 3.38916,3.14589c3.14592,0 6.79453,-3.3567 6.79453,-7.83234c0,-0.72972 -0.0973,-1.44323 -0.27567,-2.1243l-0.11351,0.03243c0.04865,0.37297 0.06486,0.64864 0.06486,0.9081c0,2.64322 -1.49188,4.91347 -3.98915,6.42157l-0.24324,0.14594c-0.53513,0.3081 -0.98918,0.48648 -1.44323,0.48648c-0.59999,0 -1.05404,-0.38918 -1.05404,-0.95675c0,-0.48648 0.32432,-0.97296 1.37837,-1.58917l0.30811,-0.17838c2.33511,-1.36215 3.6324,-3.27564 3.6324,-5.39995c0,-2.69187 -2.01079,-4.91347 -4.67023,-5.67563zm-3.40537,15.84308l0.04865,-0.0973c-1.68647,-0.7297 -2.64322,-2.23779 -2.64322,-3.89183c0,-1.78377 1.16756,-3.40537 3.43781,-4.78374l0.37297,-0.22702c1.70269,-1.03783 2.56214,-2.20539 2.56214,-3.61618c0,-1.8162 -1.42701,-3.14592 -3.38916,-3.14592c-3.14592,0 -6.79453,3.35673 -6.79453,7.83236c0,0.72972 0.0973,1.44323 0.27567,2.12431l0.11351,-0.03243c-0.04865,-0.37297 -0.06486,-0.64864 -0.06486,-0.9081c0,-2.64322 1.49188,-4.91347 3.98915,-6.42156l0.24324,-0.14595c0.53513,-0.3081 0.98918,-0.48649 1.44323,-0.48649c0.59999,0 1.05404,0.38919 1.05404,0.95675c0,0.48648 -0.32432,0.97296 -1.37836,1.58917l-0.30811,0.17838c-2.33511,1.36215 -3.6324,3.27565 -3.6324,5.39995c0,2.69187 2.01079,4.91347 4.67023,5.6756z"/>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<mask id="Chain1439_svg__mask0_8169_45929" width="20" height="20" x="2" y="2" maskUnits="userSpaceOnUse" style="mask-type:luminance">
|
|
3
|
+
<path fill="white" d="M21.6 2.3042H2.39999V21.5042H21.6V2.3042Z"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#Chain1439_svg__mask0_8169_45929)">
|
|
6
|
+
<path fill="#8E9BB2" d="M14.016 2.53369L13.9584 2.64889C15.9552 3.51289 17.088 5.29849 17.088 7.25689C17.088 9.36889 15.7056 11.2889 13.0176 12.9209L12.576 13.1897C10.56 14.4185 9.54239 15.8009 9.54239 17.4713C9.54239 19.6217 11.232 21.1961 13.5552 21.1961C17.28 21.1961 21.6 17.2217 21.6 11.9225C21.6 11.0585 21.4848 10.2137 21.2736 9.40729L21.1392 9.44569C21.1968 9.88729 21.216 10.2137 21.216 10.5209C21.216 13.6505 19.4496 16.3385 16.4928 18.1241L16.2048 18.2969C15.5712 18.6617 15.0336 18.8729 14.496 18.8729C13.7856 18.8729 13.248 18.4121 13.248 17.7401C13.248 17.1641 13.632 16.5881 14.88 15.8585L15.2448 15.6473C18.0096 14.0345 19.5456 11.7689 19.5456 9.25369C19.5456 6.06649 17.1648 3.43609 14.016 2.53369ZM9.98399 21.2921L10.0416 21.1769C8.04479 20.3129 6.91199 18.5273 6.91199 16.5689C6.91199 14.4569 8.29439 12.5369 10.9824 10.9049L11.424 10.6361C13.44 9.40729 14.4576 8.02489 14.4576 6.35449C14.4576 4.20409 12.768 2.62969 10.4448 2.62969C6.71999 2.62969 2.39999 6.60409 2.39999 11.9033C2.39999 12.7673 2.51519 13.6121 2.72639 14.4185L2.86079 14.3801C2.80319 13.9385 2.78399 13.6121 2.78399 13.3049C2.78399 10.1753 4.55039 7.48729 7.50719 5.70169L7.79519 5.52889C8.42879 5.16409 8.96639 4.95289 9.50399 4.95289C10.2144 4.95289 10.752 5.41369 10.752 6.08569C10.752 6.66169 10.368 7.23769 9.11999 7.96729L8.75519 8.17849C5.99039 9.79129 4.45439 12.0569 4.45439 14.5721C4.45439 17.7593 6.83519 20.3897 9.98399 21.2921Z"/>
|
|
12
7
|
</g>
|
|
13
8
|
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
2
|
-
<path fill="#8E9BB2" d="M15.0916 11.8819L17.7518 2.9043H14.2051L10.6589 9.17682V2.9043H7.11224L4.
|
|
2
|
+
<path fill="#8E9BB2" d="M15.0916 11.8819L17.7518 2.9043H14.2051L10.6589 9.17682V2.9043H7.11224L4.45245 11.8819H6.58028L4.45245 19.0637H10.6589V14.5909L15.9788 20.9043L19.5475 15.473L12.4542 11.8819H15.0916Z"/>
|
|
3
3
|
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
|
|
2
|
+
<rect width="42" height="42" fill="#1F2925" rx="21"/>
|
|
3
|
+
<mask id="ath_svg__mask0_8174_46013" width="24" height="20" x="9" y="10" maskUnits="userSpaceOnUse" style="mask-type:luminance">
|
|
4
|
+
<path fill="white" d="M32.8125 10.979H9.1875V29.521H32.8125V10.979Z"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#ath_svg__mask0_8174_46013)">
|
|
7
|
+
<path fill="#D7FE51" d="M23.4933 10.979H18.5063C17.9319 10.979 17.4085 11.3067 17.1592 11.822L14.6097 17.0935C14.2908 17.7527 14.773 18.5175 15.5081 18.5175H18.9487C19.4272 18.5175 19.8633 18.2443 20.0714 17.8148L20.9998 15.8954L25.7562 25.7283L19.3301 21.0949C19.0745 20.9111 18.7681 20.8118 18.4527 20.8118H13.7487C13.1742 20.8118 12.6509 21.1395 12.4016 21.6547L9.28759 28.097C8.96859 28.7562 9.45083 29.521 10.1861 29.521H13.6265C14.105 29.521 14.5411 29.2479 14.7493 28.8184L17.2776 23.5915L24.2434 28.8717C24.7991 29.2926 25.477 29.521 26.1749 29.521H31.8147C32.55 29.521 33.0322 28.7562 32.7133 28.097L24.8403 11.822C24.5911 11.3067 24.0677 10.979 23.4933 10.979Z"/>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
|
|
2
|
+
<rect width="42" height="42" fill="white" rx="21"/>
|
|
3
|
+
<path fill="#0B4431" d="M20.7485 34.2812C20.7312 34.2812 20.7312 34.2812 20.7139 34.2812C14.9429 34.264 12.1783 31.4994 10.8652 29.2014C9.65567 27.0588 9.18915 24.7089 9.51744 22.2208C9.77662 20.1474 10.606 17.9703 11.9192 15.966C12.7485 14.6874 13.8371 13.3915 14.9947 12.3375C15.8414 11.56 16.5325 11.0589 17.0855 10.8343C16.9127 10.1258 16.809 9.00273 16.7744 8.6226V8.55348C16.7572 7.67228 17.742 7.27487 18.0703 7.13664C18.6924 6.87746 19.4353 6.73924 20.1438 6.72196C20.8522 6.70468 21.5606 6.75651 22.1481 6.89474C22.5109 6.98114 23.5995 7.22303 23.6167 8.15608L23.6686 9.7457C23.6686 10.0394 23.6513 10.2986 23.6167 10.5405C26.7096 11.6291 29.3359 14.8947 30.4072 16.6571C30.8392 17.3655 31.8932 19.2835 32.3597 21.6852C32.9126 24.5707 32.4461 27.1452 30.9601 29.3741C27.9018 33.9184 22.4245 34.2812 20.7485 34.2812ZM17.6729 12.6139C16.9818 12.9941 14.9775 14.6701 13.4915 16.9854C12.0228 19.2489 9.93213 23.7413 12.5066 28.2856C14.0271 30.981 16.8781 32.4152 20.7312 32.4324C20.7485 32.4324 20.7485 32.4324 20.7658 32.4324C22.1999 32.4324 26.8824 32.1214 29.3878 28.3547C32.3424 23.9314 29.4223 18.6614 28.8003 17.6593C28.2647 16.7781 27.1761 15.344 25.8284 14.1345L20.1783 13.2705L15.8932 14.1172L18.1567 12.8386C18.0703 12.804 17.9839 12.7695 17.8975 12.7176C17.8111 12.6831 17.7248 12.6485 17.6729 12.6139ZM22.8392 12.5794L24.9645 13.4088C24.3943 12.9941 23.8068 12.6312 23.1848 12.3893C23.0984 12.4412 23.012 12.493 22.9083 12.5448C22.891 12.5621 22.8738 12.5794 22.8392 12.5794ZM18.6578 8.91633C18.7442 9.62475 18.8479 10.3505 18.917 10.5578C19.0552 10.9379 19.2798 11.1798 19.6254 11.3181L20.3165 11.5945L20.904 11.2662C21.215 11.0934 21.4224 10.8343 21.4396 10.817L21.5088 10.7133L21.5433 10.696C21.5952 10.6269 21.7679 10.3505 21.7507 9.81482V8.72627C21.4224 8.63988 20.8522 8.57076 20.1783 8.58804C19.539 8.60532 18.9688 8.7781 18.6578 8.91633Z"/>
|
|
4
|
+
<path fill="#77BAA1" d="M30.1481 28.8477C27.3144 33.1155 22.0617 33.3401 20.714 33.3401C19.0207 33.3401 14.1654 33.1328 11.6773 28.7267C9.2929 24.5108 10.416 19.9665 12.6968 16.459C14.4765 13.7117 17.0337 11.6382 17.6903 11.6037C17.8112 11.6037 18.0013 11.7246 18.295 11.8629C18.7097 12.0529 19.349 12.2948 20.3512 12.2084C21.5088 12.1048 22.1309 11.8974 22.4937 11.7074C22.9084 11.5 23.0121 11.3272 23.1849 11.3963C26.1568 12.3985 28.6794 15.6641 29.5952 17.1501C30.5801 18.7743 33.2755 24.1652 30.1481 28.8477Z"/>
|
|
5
|
+
<path fill="#F3ACBB" d="M13.231 19.5672C13.231 19.5672 11.9351 22.7292 12.2115 25.0963C12.4707 27.3771 14.0085 30.7637 17.7752 31.5931C21.542 32.4224 23.9782 31.4548 26.0689 30.5218C28.1424 29.5887 29.5765 27.6363 29.7838 25.7875C29.9912 23.9387 30.0084 21.2432 28.9717 19.0488"/>
|
|
6
|
+
<path fill="#89B772" d="M22.423 13.7586C22.302 14.1906 20.3323 14.6052 19.4338 14.3633C18.5526 14.1214 18.4835 13.5513 18.2761 11.8752C18.6908 12.0653 19.3301 12.3072 20.3323 12.2208C21.4899 12.1171 22.112 11.9098 22.4748 11.7197C22.5094 12.1517 22.5439 13.3439 22.423 13.7586Z"/>
|
|
7
|
+
<path fill="#F08FA2" d="M17.7425 29.6211C17.6388 29.3792 17.6215 29.12 17.6561 28.8609C17.777 27.9278 18.4336 25.457 21.8375 23.5909C26.1053 21.241 28.3515 23.2281 28.3515 23.2281C28.3515 23.2281 29.6992 24.4203 28.6798 27.254C27.6603 30.0704 22.6668 31.1071 22.6668 31.1071C22.6668 31.1071 18.6928 32.0228 17.7425 29.6211Z"/>
|
|
8
|
+
<path fill="#F08FA2" d="M13.6304 24.4426C13.3539 24.4426 13.3366 23.3541 13.6822 22.8703C14.2351 22.0927 15.1854 22.8184 15.1854 22.8184C15.1854 22.8184 14.3561 24.4426 13.6304 24.4426Z"/>
|
|
9
|
+
<path fill="#F8D0D9" d="M28.9717 19.0467C28.9717 18.632 25.4468 18.3037 21.0926 18.3037C16.7384 18.3037 13.2136 19.1504 13.2136 19.565C13.2136 19.9797 16.7384 20.7054 21.0926 20.7054C25.4468 20.7054 28.9717 19.4614 28.9717 19.0467Z"/>
|
|
10
|
+
<path fill="#DD8843" d="M17.6907 8.53454C17.6907 8.53454 17.9844 10.3488 18.1054 10.8671C18.209 11.2991 18.8829 12.2321 20.1269 12.3704C21.4574 12.5086 22.2177 11.3509 22.2177 11.3509C22.2177 11.3509 22.7533 10.8499 22.7187 9.77859C22.6842 8.70732 22.6669 8.18896 22.6669 8.18896C22.6669 8.18896 19.8678 8.44814 17.6907 8.53454Z"/>
|
|
11
|
+
<path fill="#EBB646" d="M22.6671 8.18623C22.6671 7.92705 21.5094 7.61604 20.1617 7.65059C18.7967 7.68515 17.6736 8.27262 17.6909 8.5318C17.6909 8.79098 18.8485 9.18838 20.1963 9.15383C21.5613 9.11927 22.6671 8.44541 22.6671 8.18623Z"/>
|
|
12
|
+
<path fill="white" d="M13.8704 20.0598C13.7322 20.0252 13.6285 19.9388 13.5421 19.8179C13.3002 19.4378 12.9546 18.4356 14.3369 16.5177C16.1339 13.995 17.1015 14.8417 17.1015 14.8417C17.1015 14.8417 18.2937 15.4464 16.9978 17.5717C16.9805 17.5889 16.9805 17.6062 16.9633 17.6235C16.8423 17.9172 15.5637 20.5263 13.8704 20.0598Z"/>
|
|
13
|
+
<path fill="white" d="M26.6927 30.2449C26.3989 30.193 26.2089 29.9338 26.2607 29.6401C26.3298 29.2773 26.5372 28.7243 27.1419 28.1887C28.075 27.3593 28.7488 28.1023 28.9043 28.3097C28.9389 28.3615 28.9562 28.4133 28.9734 28.4652C29.008 28.638 28.9907 28.9835 28.5242 29.5019C27.9886 30.0894 27.332 30.3658 26.6927 30.2449Z"/>
|
|
14
|
+
<path fill="#A5D4C1" d="M31.0108 22.5795C31.1835 23.0287 29.9049 21.3527 29.7321 21.3354C29.473 21.3009 28.1598 24.4801 27.8315 24.5665C27.4168 24.6702 24.0475 22.2166 23.3218 22.2858C22.0259 22.3722 19.365 26.2771 19.0194 26.3462C18.6048 26.4153 15.6328 22.856 14.5616 22.7177C14.1987 22.6659 11.6933 25.7069 11.486 25.4823C11.3823 25.3786 11.1404 22.9596 11.175 22.2858C11.2095 21.8538 11.5033 23.9791 11.6242 23.9791C11.8316 23.9963 14.1296 21.6983 14.6134 21.7328C15.0454 21.7674 18.4493 24.7912 18.7775 24.722C19.1058 24.6529 22.406 21.4046 23.1145 21.3009C23.6674 21.2318 26.6047 23.357 27.3995 23.2188C27.8833 23.1497 29.3693 20.5233 29.6285 20.4542C29.8531 20.437 30.8207 22.0957 31.0108 22.5795Z"/>
|
|
15
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api3/logos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"homepage": "https://api3dao.github.io/logos/",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"api-provider"
|
|
20
20
|
],
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@api3/dapi-management": "3.
|
|
23
|
-
"@babel/core": "^7.28.
|
|
22
|
+
"@api3/dapi-management": "3.48.0",
|
|
23
|
+
"@babel/core": "^7.28.3",
|
|
24
24
|
"@babel/preset-react": "^7.27.1",
|
|
25
25
|
"@changesets/changelog-github": "^0.5.1",
|
|
26
|
-
"@changesets/cli": "^2.29.
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
28
|
-
"@typescript-eslint/parser": "^8.
|
|
26
|
+
"@changesets/cli": "^2.29.6",
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^8.40.0",
|
|
28
|
+
"@typescript-eslint/parser": "^8.40.0",
|
|
29
29
|
"dotenv": "^17.2.1",
|
|
30
30
|
"dropbox": "^10.34.0",
|
|
31
31
|
"eslint": "^8.57.1",
|