Skip to content

Commit ef2bd75

Browse files
authored
Merge pull request #114 from bgd-labs/feat/add-teth
feat: add tETH
2 parents 2363f3c + 5dc67ff commit ef2bd75

31 files changed

+273
-3
lines changed

icons/full/ateth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/statateth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/teth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/icons.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3351,6 +3351,34 @@
33513351
}
33523352
}
33533353
},
3354+
{
3355+
"type": [
3356+
"asset"
3357+
],
3358+
"symbol": "teth",
3359+
"name": "Treehouse ETH",
3360+
"aliases": [
3361+
"tETH",
3362+
"atETH",
3363+
"statatETH"
3364+
],
3365+
"variations": [
3366+
"aToken",
3367+
"stataToken"
3368+
],
3369+
"icons": {
3370+
"mono": "icons/mono/teth.svg",
3371+
"full": "icons/full/teth.svg",
3372+
"aToken": {
3373+
"mono": "icons/mono/ateth.svg",
3374+
"full": "icons/full/ateth.svg"
3375+
},
3376+
"stataToken": {
3377+
"mono": "icons/mono/statateth.svg",
3378+
"full": "icons/full/statateth.svg"
3379+
}
3380+
}
3381+
},
33543382
{
33553383
"type": [
33563384
"wallet"

icons/mono/ateth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/statateth.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/teth.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+
// GENERATED BY ./src/scripts/generateComponents.ts
2+
// DO NOT EDIT IT MANUALLY
3+
4+
import React from "react";
5+
6+
import { iconAteth } from "../../../icons/full/build/icon-ateth.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AtethIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAteth.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AtethIcon.displayName = 'AtethIcon';
16+
}
17+
18+
export default AtethIcon;
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 { iconStatateth } from "../../../icons/full/build/icon-statateth.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StatatethIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStatateth.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StatatethIcon.displayName = 'StatatethIcon';
16+
}
17+
18+
export default StatatethIcon;
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 { iconTeth } from "../../../icons/full/build/icon-teth.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const TethIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconTeth.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
TethIcon.displayName = 'TethIcon';
16+
}
17+
18+
export default TethIcon;

0 commit comments

Comments
 (0)