Skip to content

Commit 65b422a

Browse files
committed
fix: added rseth asset icon
1 parent 9bad308 commit 65b422a

31 files changed

+272
-3
lines changed

icons/full/arseth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/rseth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/statarseth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/icons.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2300,6 +2300,39 @@
23002300
}
23012301
}
23022302
},
2303+
{
2304+
"type": [
2305+
"asset"
2306+
],
2307+
"symbol": "rseth",
2308+
"name": "Kelp DAO Restaked ETH",
2309+
"aliases": [
2310+
"RSETH",
2311+
"rsETH",
2312+
"aEthRSETH",
2313+
"aEthrsETH",
2314+
"variableDebtEthRSETH",
2315+
"variableDebtEthrsETH",
2316+
"stataEthRSETH",
2317+
"stataEthrsETH"
2318+
],
2319+
"variations": [
2320+
"aToken",
2321+
"stataToken"
2322+
],
2323+
"icons": {
2324+
"mono": "icons/mono/rseth.svg",
2325+
"full": "icons/full/rseth.svg",
2326+
"aToken": {
2327+
"mono": "icons/mono/arseth.svg",
2328+
"full": "icons/full/arseth.svg"
2329+
},
2330+
"stataToken": {
2331+
"mono": "icons/mono/statarseth.svg",
2332+
"full": "icons/full/statarseth.svg"
2333+
}
2334+
}
2335+
},
23032336
{
23042337
"type": [
23052338
"wallet"

icons/mono/arseth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/rseth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/statarseth.svg

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

0 commit comments

Comments
 (0)