Skip to content

Commit 3c0e466

Browse files
authored
Merge pull request #110 from bgd-labs/feat/add-stk-variant-for-gho
feat: stkgho -> aavestkgho, add stk variant for gho
2 parents 18d0435 + 36f967e commit 3c0e466

26 files changed

+109
-50
lines changed

icons/full/aavestkgho.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/stkgho.svg

Lines changed: 1 addition & 1 deletion
Loading

icons/icons.json

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,22 @@
5959
}
6060
}
6161
},
62+
{
63+
"type": [
64+
"asset"
65+
],
66+
"symbol": "aavestkgho",
67+
"name": "Aave stkGHO",
68+
"aliases": [
69+
"stkgho",
70+
"stkGHO"
71+
],
72+
"variations": [],
73+
"icons": {
74+
"mono": "icons/mono/aavestkgho.svg",
75+
"full": "icons/full/aavestkgho.svg"
76+
}
77+
},
6278
{
6379
"type": [
6480
"wallet"
@@ -1490,7 +1506,8 @@
14901506
],
14911507
"variations": [
14921508
"aToken",
1493-
"stataToken"
1509+
"stataToken",
1510+
"stkToken"
14941511
],
14951512
"icons": {
14961513
"mono": "icons/mono/gho.svg",
@@ -1502,6 +1519,10 @@
15021519
"stataToken": {
15031520
"mono": "icons/mono/statagho.svg",
15041521
"full": "icons/full/statagho.svg"
1522+
},
1523+
"stkToken": {
1524+
"mono": "icons/mono/stkgho.svg",
1525+
"full": "icons/full/stkgho.svg"
15051526
}
15061527
}
15071528
},
@@ -2387,7 +2408,13 @@
23872408
"stataEthPT-eUSDe",
23882409
"PT-eUSDE-29MAY2025",
23892410
"aEthPT-eUSDE-29MAY2025",
2390-
"stataEthPT-eUSDE-29MAY2025"
2411+
"stataEthPT-eUSDE-29MAY2025",
2412+
"PT-eUSDE-14AUG2025",
2413+
"aEthPT-eUSDE-14AUG2025",
2414+
"stataEthPT-eUSDE-14AUG2025",
2415+
"PT-USDe-31JUL2025",
2416+
"aEthPT-USDe-31JUL2025",
2417+
"stataEthPT-USDe-31JUL2025"
23912418
],
23922419
"variations": [
23932420
"aToken",
@@ -3142,21 +3169,6 @@
31423169
"full": "icons/full/stkbptv2.svg"
31433170
}
31443171
},
3145-
{
3146-
"type": [
3147-
"asset"
3148-
],
3149-
"symbol": "stkgho",
3150-
"name": "Aave stkGHO",
3151-
"aliases": [
3152-
"stkGHO"
3153-
],
3154-
"variations": [],
3155-
"icons": {
3156-
"mono": "icons/mono/stkgho.svg",
3157-
"full": "icons/full/stkgho.svg"
3158-
}
3159-
},
31603172
{
31613173
"type": [
31623174
"asset"

icons/mono/aavestkgho.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/stkgho.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// GENERATED BY ./src/scripts/generateComponents.ts
2+
// DO NOT EDIT IT MANUALLY
3+
4+
import React from "react";
5+
6+
import { iconAavestkgho } from "../../../icons/full/build/icon-aavestkgho.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AavestkghoIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAavestkgho.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AavestkghoIcon.displayName = 'AavestkghoIcon';
16+
}
17+
18+
export default AavestkghoIcon;

packages/react-web3-icons/src/components/icons/full/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export { default as AarbIcon } from './AarbIcon';
1010
export { default as AausdIcon } from './AausdIcon';
1111
export { default as AavaxIcon } from './AavaxIcon';
1212
export { default as AaveIcon } from './AaveIcon';
13+
export { default as AavestkghoIcon } from './AavestkghoIcon';
1314
export { default as AbalIcon } from './AbalIcon';
1415
export { default as AbatIcon } from './AbatIcon';
1516
export { default as AbnbxIcon } from './AbnbxIcon';
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// GENERATED BY ./src/scripts/generateComponents.ts
2+
// DO NOT EDIT IT MANUALLY
3+
4+
import React from "react";
5+
6+
import { iconAavestkgho } from "../../../icons/mono/build/icon-aavestkgho.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AavestkghoIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAavestkgho.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AavestkghoIcon.displayName = 'AavestkghoIcon';
16+
}
17+
18+
export default AavestkghoIcon;

packages/react-web3-icons/src/components/icons/mono/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export { default as AarbIcon } from './AarbIcon';
1010
export { default as AausdIcon } from './AausdIcon';
1111
export { default as AavaxIcon } from './AavaxIcon';
1212
export { default as AaveIcon } from './AaveIcon';
13+
export { default as AavestkghoIcon } from './AavestkghoIcon';
1314
export { default as AbalIcon } from './AbalIcon';
1415
export { default as AbatIcon } from './AbatIcon';
1516
export { default as AbnbxIcon } from './AbnbxIcon';

packages/react-web3-icons/src/helpers/assetsAliases.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)