Skip to content

Commit 50c2914

Browse files
authored
Merge pull request #97 from bgd-labs/feat/add-usdtb-icon
feat: add USDtb icon
2 parents 6518145 + 7e4941e commit 50c2914

31 files changed

+240
-3
lines changed

icons/full/ausdtb.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/statausdtb.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/usdtb.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/icons.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3549,6 +3549,35 @@
35493549
}
35503550
}
35513551
},
3552+
{
3553+
"type": [
3554+
"asset"
3555+
],
3556+
"symbol": "usdtb",
3557+
"name": "USDtb",
3558+
"aliases": [
3559+
"USDtb",
3560+
"USDTB",
3561+
"aEthUSDtb",
3562+
"stataEthUSDtb"
3563+
],
3564+
"variations": [
3565+
"aToken",
3566+
"stataToken"
3567+
],
3568+
"icons": {
3569+
"mono": "icons/mono/usdtb.svg",
3570+
"full": "icons/full/usdtb.svg",
3571+
"aToken": {
3572+
"mono": "icons/mono/ausdtb.svg",
3573+
"full": "icons/full/ausdtb.svg"
3574+
},
3575+
"stataToken": {
3576+
"mono": "icons/mono/statausdtb.svg",
3577+
"full": "icons/full/statausdtb.svg"
3578+
}
3579+
}
3580+
},
35523581
{
35533582
"type": [
35543583
"asset"

icons/mono/ausdtb.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/statausdtb.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/usdtb.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 { iconAusdtb } from "../../../icons/full/build/icon-ausdtb.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AusdtbIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAusdtb.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AusdtbIcon.displayName = 'AusdtbIcon';
16+
}
17+
18+
export default AusdtbIcon;
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 { iconStatausdtb } from "../../../icons/full/build/icon-statausdtb.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StatausdtbIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStatausdtb.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StatausdtbIcon.displayName = 'StatausdtbIcon';
16+
}
17+
18+
export default StatausdtbIcon;
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 { iconUsdtb } from "../../../icons/full/build/icon-usdtb.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const UsdtbIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconUsdtb.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
UsdtbIcon.displayName = 'UsdtbIcon';
16+
}
17+
18+
export default UsdtbIcon;

0 commit comments

Comments
 (0)