Skip to content

Commit de758f7

Browse files
committed
feat: add usdt0
1 parent 425c5c7 commit de758f7

31 files changed

+242
-3
lines changed

icons/full/ausdt0.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/statausdt0.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/usdt0.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/icons.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3474,6 +3474,32 @@
34743474
}
34753475
}
34763476
},
3477+
{
3478+
"type": [
3479+
"asset"
3480+
],
3481+
"symbol": "usdt0",
3482+
"name": "USD₮0",
3483+
"aliases": [
3484+
"USD₮0"
3485+
],
3486+
"variations": [
3487+
"aToken",
3488+
"stataToken"
3489+
],
3490+
"icons": {
3491+
"mono": "icons/mono/usdt0.svg",
3492+
"full": "icons/full/usdt0.svg",
3493+
"aToken": {
3494+
"mono": "icons/mono/ausdt0.svg",
3495+
"full": "icons/full/ausdt0.svg"
3496+
},
3497+
"stataToken": {
3498+
"mono": "icons/mono/statausdt0.svg",
3499+
"full": "icons/full/statausdt0.svg"
3500+
}
3501+
}
3502+
},
34773503
{
34783504
"type": [
34793505
"asset"

icons/mono/ausdt0.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/statausdt0.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/usdt0.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 { iconAusdt0 } from "../../../icons/full/build/icon-ausdt0.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AusdtZeroIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAusdt0.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AusdtZeroIcon.displayName = 'AusdtZeroIcon';
16+
}
17+
18+
export default AusdtZeroIcon;
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 { iconStatausdt0 } from "../../../icons/full/build/icon-statausdt0.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StatausdtZeroIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStatausdt0.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StatausdtZeroIcon.displayName = 'StatausdtZeroIcon';
16+
}
17+
18+
export default StatausdtZeroIcon;
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 { iconUsdt0 } from "../../../icons/full/build/icon-usdt0.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const UsdtZeroIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconUsdt0.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
UsdtZeroIcon.displayName = 'UsdtZeroIcon';
16+
}
17+
18+
export default UsdtZeroIcon;

0 commit comments

Comments
 (0)