@api3/logos 0.2.9 → 0.2.11
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 +9 -0
- package/dist/cjs/index.d.ts +4 -4
- package/dist/cjs/index.js +4 -4
- package/dist/esm/SymbolLogo.js +9 -0
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/logos/symbol/Egeth.svg +29 -0
- package/dist/logos/symbol/Msteth.svg +33 -0
- package/dist/logos/symbol/Scr.svg +10 -0
- package/package.json +6 -6
package/dist/cjs/SymbolLogo.js
CHANGED
|
@@ -54,6 +54,7 @@ const SymbolDydx = require('../logos/symbol/Dydx.svg');
|
|
|
54
54
|
const SymbolDym = require('../logos/symbol/Dym.svg');
|
|
55
55
|
const SymbolEBtc = require('../logos/symbol/Ebtc.svg');
|
|
56
56
|
const SymbolWbtc = require('../logos/symbol/Wbtc.svg');
|
|
57
|
+
const SymbolEgEth = require('../logos/symbol/Egeth.svg');
|
|
57
58
|
const SymbolEna = require('../logos/symbol/Ena.svg');
|
|
58
59
|
const SymbolEns = require('../logos/symbol/Ens.svg');
|
|
59
60
|
const SymbolErn = require('../logos/symbol/Ern.svg');
|
|
@@ -109,6 +110,7 @@ const SymbolMnt = require('../logos/symbol/Mnt.svg');
|
|
|
109
110
|
const SymbolMode = require('../logos/symbol/Mode.svg');
|
|
110
111
|
const SymbolMovr = require('../logos/symbol/Movr.svg');
|
|
111
112
|
const SymbolMpEth = require('../logos/symbol/Mpeth.svg');
|
|
113
|
+
const SymbolMstEth = require('../logos/symbol/Msteth.svg');
|
|
112
114
|
const SymbolNear = require('../logos/symbol/Near.svg');
|
|
113
115
|
const SymbolNeon = require('../logos/symbol/Neon.svg');
|
|
114
116
|
const SymbolOkb = require('../logos/symbol/Okb.svg');
|
|
@@ -138,6 +140,7 @@ const SymbolSafe = require('../logos/symbol/Safe.svg');
|
|
|
138
140
|
const SymbolSand = require('../logos/symbol/Sand.svg');
|
|
139
141
|
const SymbolSats = require('../logos/symbol/Sats.svg');
|
|
140
142
|
const SymbolSAvax = require('../logos/symbol/Savax.svg');
|
|
143
|
+
const SymbolScr = require('../logos/symbol/Scr.svg');
|
|
141
144
|
const SymbolSDai = require('../logos/symbol/Sdai.svg');
|
|
142
145
|
const SymbolSei = require('../logos/symbol/Sei.svg');
|
|
143
146
|
const SymbolSFrax = require('../logos/symbol/Sfrax.svg');
|
|
@@ -311,6 +314,8 @@ function SymbolLogo(id, light = false) {
|
|
|
311
314
|
return SymbolEBtc;
|
|
312
315
|
case "wbtc":
|
|
313
316
|
return SymbolWbtc;
|
|
317
|
+
case "egeth":
|
|
318
|
+
return SymbolEgEth;
|
|
314
319
|
case "ena":
|
|
315
320
|
return SymbolEna;
|
|
316
321
|
case "ens":
|
|
@@ -421,6 +426,8 @@ function SymbolLogo(id, light = false) {
|
|
|
421
426
|
return SymbolMovr;
|
|
422
427
|
case "mpeth":
|
|
423
428
|
return SymbolMpEth;
|
|
429
|
+
case "msteth":
|
|
430
|
+
return SymbolMstEth;
|
|
424
431
|
case "near":
|
|
425
432
|
return SymbolNear;
|
|
426
433
|
case "neon":
|
|
@@ -479,6 +486,8 @@ function SymbolLogo(id, light = false) {
|
|
|
479
486
|
return SymbolSats;
|
|
480
487
|
case "savax":
|
|
481
488
|
return SymbolSAvax;
|
|
489
|
+
case "scr":
|
|
490
|
+
return SymbolScr;
|
|
482
491
|
case "sdai":
|
|
483
492
|
return SymbolSDai;
|
|
484
493
|
case "sei":
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
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
1
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
6
2
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
3
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
4
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
5
|
+
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
6
|
+
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
|
|
2
|
-
module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
|
|
3
|
-
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
4
|
-
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
|
5
1
|
module.exports.SymbolLogo = require('./SymbolLogo.js');
|
|
6
2
|
module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
|
|
3
|
+
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
4
|
+
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
|
5
|
+
module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
|
|
6
|
+
module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
|
package/dist/esm/SymbolLogo.js
CHANGED
|
@@ -54,6 +54,7 @@ import SymbolDydx from '../logos/symbol/Dydx.svg';
|
|
|
54
54
|
import SymbolDym from '../logos/symbol/Dym.svg';
|
|
55
55
|
import SymbolEBtc from '../logos/symbol/Ebtc.svg';
|
|
56
56
|
import SymbolWbtc from '../logos/symbol/Wbtc.svg';
|
|
57
|
+
import SymbolEgEth from '../logos/symbol/Egeth.svg';
|
|
57
58
|
import SymbolEna from '../logos/symbol/Ena.svg';
|
|
58
59
|
import SymbolEns from '../logos/symbol/Ens.svg';
|
|
59
60
|
import SymbolErn from '../logos/symbol/Ern.svg';
|
|
@@ -109,6 +110,7 @@ import SymbolMnt from '../logos/symbol/Mnt.svg';
|
|
|
109
110
|
import SymbolMode from '../logos/symbol/Mode.svg';
|
|
110
111
|
import SymbolMovr from '../logos/symbol/Movr.svg';
|
|
111
112
|
import SymbolMpEth from '../logos/symbol/Mpeth.svg';
|
|
113
|
+
import SymbolMstEth from '../logos/symbol/Msteth.svg';
|
|
112
114
|
import SymbolNear from '../logos/symbol/Near.svg';
|
|
113
115
|
import SymbolNeon from '../logos/symbol/Neon.svg';
|
|
114
116
|
import SymbolOkb from '../logos/symbol/Okb.svg';
|
|
@@ -138,6 +140,7 @@ import SymbolSafe from '../logos/symbol/Safe.svg';
|
|
|
138
140
|
import SymbolSand from '../logos/symbol/Sand.svg';
|
|
139
141
|
import SymbolSats from '../logos/symbol/Sats.svg';
|
|
140
142
|
import SymbolSAvax from '../logos/symbol/Savax.svg';
|
|
143
|
+
import SymbolScr from '../logos/symbol/Scr.svg';
|
|
141
144
|
import SymbolSDai from '../logos/symbol/Sdai.svg';
|
|
142
145
|
import SymbolSei from '../logos/symbol/Sei.svg';
|
|
143
146
|
import SymbolSFrax from '../logos/symbol/Sfrax.svg';
|
|
@@ -311,6 +314,8 @@ function SymbolLogo(id, light = false) {
|
|
|
311
314
|
return SymbolEBtc;
|
|
312
315
|
case "wbtc":
|
|
313
316
|
return SymbolWbtc;
|
|
317
|
+
case "egeth":
|
|
318
|
+
return SymbolEgEth;
|
|
314
319
|
case "ena":
|
|
315
320
|
return SymbolEna;
|
|
316
321
|
case "ens":
|
|
@@ -421,6 +426,8 @@ function SymbolLogo(id, light = false) {
|
|
|
421
426
|
return SymbolMovr;
|
|
422
427
|
case "mpeth":
|
|
423
428
|
return SymbolMpEth;
|
|
429
|
+
case "msteth":
|
|
430
|
+
return SymbolMstEth;
|
|
424
431
|
case "near":
|
|
425
432
|
return SymbolNear;
|
|
426
433
|
case "neon":
|
|
@@ -479,6 +486,8 @@ function SymbolLogo(id, light = false) {
|
|
|
479
486
|
return SymbolSats;
|
|
480
487
|
case "savax":
|
|
481
488
|
return SymbolSAvax;
|
|
489
|
+
case "scr":
|
|
490
|
+
return SymbolScr;
|
|
482
491
|
case "sdai":
|
|
483
492
|
return SymbolSDai;
|
|
484
493
|
case "sei":
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
|
-
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
1
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
4
2
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
3
|
+
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
4
|
+
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
5
5
|
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
6
|
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
|
-
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
1
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
4
2
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
3
|
+
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
4
|
+
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
5
5
|
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
6
|
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
|
|
2
|
+
<rect width="41" height="41" x="0.5" y="0.5" fill="url(#egeth_svg__paint0_radial_5180_28576)" rx="20.5"/>
|
|
3
|
+
<rect width="41" height="41" x="0.5" y="0.5" stroke="#1A1071" rx="20.5"/>
|
|
4
|
+
<circle cx="21" cy="21" r="9.7125" stroke="#CACEEC" stroke-width="0.2625"/>
|
|
5
|
+
<circle cx="21" cy="21" r="10.3687" stroke="#CACEEC" stroke-width="0.2625"/>
|
|
6
|
+
<circle cx="21" cy="21" r="11.025" stroke="#CACEEC" stroke-width="0.2625" opacity="0.9"/>
|
|
7
|
+
<circle cx="21" cy="21" r="11.6812" stroke="#CACEEC" stroke-width="0.2625" opacity="0.8"/>
|
|
8
|
+
<circle cx="21" cy="21" r="12.3375" stroke="#CACEEC" stroke-width="0.2625" opacity="0.7"/>
|
|
9
|
+
<circle cx="21" cy="21" r="12.9937" stroke="#CACEEC" stroke-width="0.2625" opacity="0.6"/>
|
|
10
|
+
<circle cx="21" cy="21" r="13.65" stroke="#CACEEC" stroke-width="0.2625" opacity="0.5"/>
|
|
11
|
+
<circle cx="21" cy="21" r="14.3062" stroke="#CACEEC" stroke-width="0.2625" opacity="0.4"/>
|
|
12
|
+
<circle cx="21" cy="21" r="14.9625" stroke="#CACEEC" stroke-width="0.2625" opacity="0.25"/>
|
|
13
|
+
<circle cx="21" cy="21" r="15.6187" stroke="#CACEEC" stroke-width="0.2625" opacity="0.1"/>
|
|
14
|
+
<circle cx="21" cy="21" r="16.4062" stroke="#FCCD59" stroke-width="0.984375"/>
|
|
15
|
+
<path fill="#050067" stroke="#050067" stroke-linejoin="round" stroke-width="0.328125" d="M12.3285 21.1724C12.3125 21.1989 12.3046 21.2285 12.3047 21.258C12.3046 21.2678 12.3055 21.2778 12.3073 21.2876C12.3157 21.3348 12.3444 21.376 12.3858 21.4003L20.9145 26.4023C20.9658 26.4323 21.0293 26.4323 21.0805 26.4023L29.6108 21.4003C29.6522 21.376 29.6809 21.3348 29.6893 21.2876C29.6911 21.2778 29.6919 21.2678 29.6919 21.258C29.6919 21.2285 29.6841 21.1989 29.668 21.1724L21.1376 7.13356C21.1079 7.08458 21.0547 7.05468 20.9974 7.05469C20.9401 7.05469 20.887 7.08459 20.8572 7.13357L12.3285 21.1724ZM20.864 34.5458C20.8948 34.5888 20.9445 34.6144 20.9974 34.6144C21.0503 34.6144 21.1 34.5889 21.1308 34.5458L29.666 22.6232C29.711 22.5602 29.7059 22.4743 29.6537 22.4171C29.6015 22.3599 29.5165 22.3469 29.4496 22.3861L20.9975 27.3364L12.5517 22.3861C12.4849 22.347 12.3998 22.3598 12.3476 22.417C12.2954 22.4742 12.2903 22.5601 12.3353 22.6231L20.864 34.5458Z"/>
|
|
16
|
+
<path fill="#FDBC01" stroke="#050067" stroke-linejoin="round" stroke-width="0.13125" d="M20.9975 7.21875L12.4688 21.2578L20.9975 17.4126V7.21875Z"/>
|
|
17
|
+
<path fill="#E09D00" stroke="#050067" stroke-linejoin="round" stroke-width="0.13125" d="M20.9975 17.4136L12.4688 21.2588L20.9975 26.2609V17.4136Z"/>
|
|
18
|
+
<path fill="#E09D00" stroke="#050067" stroke-linejoin="round" stroke-width="0.13125" d="M29.5278 21.2578L20.9974 7.21875V17.4126L29.5278 21.2578Z"/>
|
|
19
|
+
<path fill="#C48000" stroke="#050067" stroke-linejoin="round" stroke-width="0.13125" d="M20.9974 26.2609L29.5278 21.2588L20.9974 17.4136V26.2609Z"/>
|
|
20
|
+
<path fill="#FDBC01" stroke="#050067" stroke-linejoin="round" stroke-width="0.13125" d="M12.4688 22.5278L20.9975 34.4507V27.5268L12.4688 22.5278Z"/>
|
|
21
|
+
<path fill="#E09D00" stroke="#050067" stroke-linejoin="round" stroke-width="0.13125" d="M20.9974 27.5268V34.4507L29.5326 22.5278L20.9974 27.5268Z"/>
|
|
22
|
+
<defs>
|
|
23
|
+
<radialGradient id="egeth_svg__paint0_radial_5180_28576" cx="0" cy="0" r="1" gradientTransform="translate(21 21) rotate(90) scale(21)" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop offset="0.24" stop-color="#B2B3DF"/>
|
|
25
|
+
<stop offset="0.775" stop-color="white"/>
|
|
26
|
+
<stop offset="0.935" stop-color="#C1C2E8"/>
|
|
27
|
+
</radialGradient>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
|
|
2
|
+
<rect width="41" height="41" x="0.5" y="0.5" fill="url(#msteth_svg__paint0_radial_5182_31017)" rx="20.5"/>
|
|
3
|
+
<rect width="41" height="41" x="0.5" y="0.5" stroke="#676287" rx="20.5"/>
|
|
4
|
+
<circle cx="21" cy="21" r="17.0625" fill="url(#msteth_svg__paint1_radial_5182_31017)" stroke="#4042B0" stroke-width="0.984375"/>
|
|
5
|
+
<path fill="#E1EBFF" stroke="#E1EBFF" stroke-linejoin="round" stroke-width="0.328125" d="M20.4814 7.78981C20.4516 7.74083 20.3985 7.71093 20.3412 7.71094C20.2839 7.71094 20.2307 7.74084 20.201 7.78982L11.6723 21.8287C11.6562 21.8551 11.6484 21.8848 11.6484 21.9142C11.6484 21.9241 11.6492 21.934 11.651 21.9439C11.6594 21.9911 11.6881 22.0322 11.7295 22.0565L20.2583 27.0585C20.3095 27.0886 20.373 27.0886 20.4243 27.0585L28.9545 22.0565C28.9959 22.0322 29.0246 21.9911 29.0331 21.9439C29.0348 21.934 29.0357 21.9241 29.0356 21.9142C29.0357 21.8848 29.0278 21.8551 29.0118 21.8287L20.4814 7.78981ZM11.8955 23.0424C11.8287 23.0032 11.7436 23.0161 11.6913 23.0733C11.6391 23.1305 11.634 23.2164 11.6791 23.2794L20.2077 35.202C20.2385 35.2451 20.2882 35.2706 20.3412 35.2706C20.3941 35.2707 20.4438 35.2451 20.4746 35.2021L29.0097 23.2794C29.0548 23.2164 29.0497 23.1305 28.9975 23.0733C28.9453 23.0161 28.8602 23.0032 28.7934 23.0423L20.3413 27.9927L11.8955 23.0424Z"/>
|
|
6
|
+
<path fill="#FDBC01" d="M20.3413 7.875L11.8125 21.914L20.3413 18.0688V7.875Z"/>
|
|
7
|
+
<path fill="#E09D00" d="M20.3413 18.0698L11.8125 21.915L20.3413 26.9171V18.0698Z"/>
|
|
8
|
+
<path fill="#E09D00" d="M28.8716 21.914L20.3412 7.875V18.0688L28.8716 21.914Z"/>
|
|
9
|
+
<path fill="#C48000" d="M20.3412 26.9171L28.8716 21.915L20.3412 18.0698V26.9171Z"/>
|
|
10
|
+
<path fill="#FDBC01" d="M11.8125 23.1841L20.3413 35.1069V28.183L11.8125 23.1841Z"/>
|
|
11
|
+
<path fill="#E09D00" d="M20.3412 28.183V35.1069L28.8763 23.1841L20.3412 28.183Z"/>
|
|
12
|
+
<rect width="6.69291" height="6.77399" x="26.1844" y="9.12188" fill="white" rx="3.34646"/>
|
|
13
|
+
<rect width="6.69291" height="6.77399" x="26.1844" y="9.12188" stroke="#FDBC00" stroke-width="0.13125" rx="3.34646"/>
|
|
14
|
+
<path fill="#44A2F7" d="M28.1852 12.2767L28.1486 12.3331C27.7341 12.9686 27.8268 13.801 28.3709 14.3343C28.6911 14.648 29.1106 14.8048 29.5305 14.8048L28.1852 12.2764V12.2767Z"/>
|
|
15
|
+
<path fill="#44A2F7" d="M29.5307 13.0447L28.1854 12.2764L29.5307 14.8048V13.0451V13.0447Z" opacity="0.6"/>
|
|
16
|
+
<path fill="#44A2F7" d="M30.8765 12.2767L30.9132 12.3331C31.3276 12.9686 31.2349 13.801 30.6908 14.3343C30.3707 14.648 29.9511 14.8048 29.5312 14.8048L30.8765 12.2764V12.2767Z" opacity="0.6"/>
|
|
17
|
+
<path fill="#44A2F7" d="M29.5312 13.0447L30.8765 12.2764C29.9797 13.962 29.5312 14.8048 29.5312 14.8048V13.0451V13.0447Z" opacity="0.2"/>
|
|
18
|
+
<path fill="#44A2F7" d="M29.5312 11.3281V12.6533L30.6899 11.991L29.5312 11.3281Z" opacity="0.2"/>
|
|
19
|
+
<path fill="#44A2F7" d="M29.5321 11.3281L28.3726 11.991L29.5321 12.6533V11.3281Z" opacity="0.6"/>
|
|
20
|
+
<path fill="#44A2F7" d="M29.5321 10.2129L28.3726 11.9908L29.5321 11.3259V10.2129Z"/>
|
|
21
|
+
<path fill="#44A2F7" d="M29.5312 11.3269L30.6908 11.9917L29.5312 10.2129V11.3269Z" opacity="0.6"/>
|
|
22
|
+
<defs>
|
|
23
|
+
<radialGradient id="msteth_svg__paint0_radial_5182_31017" cx="0" cy="0" r="1" gradientTransform="translate(21 21) rotate(90) scale(21)" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop offset="0.24" stop-color="#B2B3DF"/>
|
|
25
|
+
<stop offset="0.775" stop-color="white"/>
|
|
26
|
+
<stop offset="0.935" stop-color="#C1C2E8"/>
|
|
27
|
+
</radialGradient>
|
|
28
|
+
<radialGradient id="msteth_svg__paint1_radial_5182_31017" cx="0" cy="0" r="1" gradientTransform="translate(21 21) rotate(90) scale(17.0625)" gradientUnits="userSpaceOnUse">
|
|
29
|
+
<stop offset="0.417965" stop-color="#6274D9"/>
|
|
30
|
+
<stop offset="1" stop-color="#7C8DEA"/>
|
|
31
|
+
</radialGradient>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
|
|
2
|
+
<rect width="42" height="42" fill="#FFEEDA" rx="21"/>
|
|
3
|
+
<path fill="#FFEEDA" d="M32.4634 26.4211V10.1643C32.4295 8.80675 31.3434 7.7207 29.9858 7.7207H13.0842C9.41876 7.78858 6.5 10.7752 6.5 14.4406C6.5 15.6624 6.83939 16.7485 7.34848 17.6649C7.78968 18.4454 8.46847 19.1582 9.11331 19.7012C9.31694 19.8709 9.21513 19.803 9.79209 20.1424C10.5727 20.6176 11.489 20.8551 11.489 20.8551V30.5617C11.523 31.0368 11.5569 31.4781 11.6927 31.8853C12.066 33.2429 13.0163 34.295 14.306 34.8041C14.849 35.0077 15.4599 35.1435 16.1048 35.1774L29.5786 35.2453C32.2598 35.2453 34.4658 33.0732 34.4658 30.3581C34.4658 28.7629 33.6852 27.3035 32.4634 26.4211Z"/>
|
|
4
|
+
<path fill="#EBC28E" d="M32.8033 30.4598C32.7354 32.1907 31.31 33.5822 29.5791 33.5822L20.2798 33.5483C21.0264 32.6998 21.4677 31.5798 21.4677 30.358C21.4677 28.4574 20.3477 27.1338 20.3477 27.1338H29.613C31.3779 27.1338 32.8372 28.5932 32.8372 30.358L32.8033 30.4598Z"/>
|
|
5
|
+
<path fill="#101010" d="M9.99572 18.3436C8.90967 17.3255 8.16301 16.0018 8.16301 14.4406V14.2709C8.26483 11.6237 10.4369 9.4516 13.0842 9.38372H30.0198C30.461 9.41766 30.8004 9.72311 30.8004 10.1643V24.5205C31.1737 24.5884 31.3773 24.6563 31.7507 24.7581C32.0561 24.8599 32.4634 25.0975 32.4634 25.0975V10.1643C32.4295 8.80675 31.3434 7.7207 29.9858 7.7207H13.0842C9.41876 7.78858 6.5 10.7752 6.5 14.4406C6.5 16.5788 7.48423 18.4115 9.04543 19.6673C9.14725 19.7691 9.24907 19.8709 9.55452 19.8709C10.0636 19.8709 10.403 19.4636 10.3691 19.0564C10.3691 18.683 10.2333 18.5473 9.99572 18.3436Z"/>
|
|
6
|
+
<path fill="#101010" d="M29.5789 25.4715H16.3087C15.4263 25.4715 14.7136 26.1842 14.7136 27.1006V29.0012C14.7475 29.8836 15.4942 30.6303 16.3766 30.6303H17.3608V29.0012H16.3766V27.1345C16.3766 27.1345 16.6142 27.1345 16.9196 27.1345C18.5826 27.1345 19.8384 28.6957 19.8384 30.3588C19.8384 31.8521 18.4808 33.7187 16.2408 33.583C14.2384 33.4472 13.1524 31.6824 13.1524 30.3588V14.1698C13.1524 13.4571 12.5415 12.8462 11.8288 12.8462H10.5051V14.5092H11.4894V30.3927C11.4215 33.6169 13.7972 35.246 16.2408 35.246L29.6128 35.2799C32.294 35.2799 34.5001 33.1078 34.5001 30.3927C34.4661 27.6776 32.294 25.4715 29.5789 25.4715ZM32.8031 30.4606C32.7352 32.1915 31.3098 33.583 29.5789 33.583L20.2796 33.549C21.0262 32.7006 21.4674 31.5806 21.4674 30.3588C21.4674 28.4582 20.3475 27.1345 20.3475 27.1345H29.6128C31.3777 27.1345 32.837 28.5939 32.837 30.3588L32.8031 30.4606Z"/>
|
|
7
|
+
<path fill="#101010" d="M26.015 14.7804H16.0029V13.1514H26.015C26.4562 13.1514 26.8295 13.5247 26.8295 13.9659C26.8295 14.4071 26.4901 14.7804 26.015 14.7804Z"/>
|
|
8
|
+
<path fill="#101010" d="M26.015 22.5854H16.0029V20.9224H26.015C26.4562 20.9224 26.8295 21.2957 26.8295 21.7369C26.8295 22.212 26.4901 22.5854 26.015 22.5854Z"/>
|
|
9
|
+
<path fill="#101010" d="M27.7798 18.6825H16.0029V17.0195H27.7798C28.221 17.0195 28.5943 17.3929 28.5943 17.8341C28.5943 18.3092 28.221 18.6825 27.7798 18.6825Z"/>
|
|
10
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api3/logos",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"repository": {
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"eslint": "^8.57.1",
|
|
25
|
-
"@babel/core": "^7.25.
|
|
26
|
-
"@babel/preset-react": "^7.25.
|
|
25
|
+
"@babel/core": "^7.25.9",
|
|
26
|
+
"@babel/preset-react": "^7.25.9",
|
|
27
27
|
"@changesets/changelog-github": "^0.5.0",
|
|
28
28
|
"@changesets/cli": "^2.27.9",
|
|
29
|
-
"@api3/dapi-management": "1.
|
|
29
|
+
"@api3/dapi-management": "1.98.1",
|
|
30
30
|
"dropbox": "^10.34.0",
|
|
31
31
|
"node-fetch": "^2.7.0",
|
|
32
32
|
"dotenv": "^16.4.5",
|
|
33
33
|
"prettier": "^3.3.3",
|
|
34
34
|
"rimraf": "^6.0.1",
|
|
35
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
36
|
-
"@typescript-eslint/parser": "^8.
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
36
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
37
37
|
"eslint-config-prettier": "^9.1.0",
|
|
38
38
|
"svgo": "^3.3.0"
|
|
39
39
|
},
|