Skip to content

Commit db9535a

Browse files
committed
feat: add xaut
1 parent e76aec3 commit db9535a

30 files changed

+238
-2
lines changed

icons/full/axaut.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/stataxaut.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/xaut.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/icons.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,29 @@
3131
}
3232
}
3333
},
34+
{
35+
"type": [
36+
"asset"
37+
],
38+
"symbol": "XAUt",
39+
"name": "Tether Gold",
40+
"variations": [
41+
"aToken",
42+
"stataToken"
43+
],
44+
"icons": {
45+
"mono": "icons/mono/xaut.svg",
46+
"full": "icons/full/xaut.svg",
47+
"aToken": {
48+
"mono": "icons/mono/axaut.svg",
49+
"full": "icons/full/axaut.svg"
50+
},
51+
"stataToken": {
52+
"mono": "icons/mono/stataxaut.svg",
53+
"full": "icons/full/stataxaut.svg"
54+
}
55+
}
56+
},
3457
{
3558
"type": [
3659
"asset"

icons/mono/axaut.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/stataxaut.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/xaut.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 { iconAxaut } from "../../../icons/full/build/icon-axaut.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AxautIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAxaut.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AxautIcon.displayName = 'AxautIcon';
16+
}
17+
18+
export default AxautIcon;
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 { iconStataxaut } from "../../../icons/full/build/icon-stataxaut.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StataxautIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStataxaut.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StataxautIcon.displayName = 'StataxautIcon';
16+
}
17+
18+
export default StataxautIcon;
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 { iconXaut } from "../../../icons/full/build/icon-xaut.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const XautIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconXaut.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
XautIcon.displayName = 'XautIcon';
16+
}
17+
18+
export default XautIcon;

0 commit comments

Comments
 (0)