Skip to content

Commit 3dc3b12

Browse files
authored
Add AUSD asset icon (#58)
1 parent 34bbffa commit 3dc3b12

32 files changed

+3270
-2523
lines changed

icons/full/aausd.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/ausd.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/stataausd.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
@@ -165,6 +165,35 @@
165165
"full": "icons/full/atokenwallet.svg"
166166
}
167167
},
168+
{
169+
"type": [
170+
"asset"
171+
],
172+
"symbol": "ausd",
173+
"name": "Agora USD",
174+
"aliases": [
175+
"AUSD",
176+
"aAvaAUSD",
177+
"variableDebtAvaAUSD",
178+
"stataAvaAUSD"
179+
],
180+
"variations": [
181+
"aToken",
182+
"stataToken"
183+
],
184+
"icons": {
185+
"mono": "icons/mono/ausd.svg",
186+
"full": "icons/full/ausd.svg",
187+
"aToken": {
188+
"mono": "icons/mono/aausd.svg",
189+
"full": "icons/full/aausd.svg"
190+
},
191+
"stataToken": {
192+
"mono": "icons/mono/stataausd.svg",
193+
"full": "icons/full/stataausd.svg"
194+
}
195+
}
196+
},
168197
{
169198
"type": [
170199
"chain"

icons/mono/aausd.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/ausd.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/stataausd.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 { iconAausd } from "../../../icons/full/build/icon-aausd.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AausdIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAausd.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AausdIcon.displayName = 'AausdIcon';
16+
}
17+
18+
export default AausdIcon;
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 { iconAusd } from "../../../icons/full/build/icon-ausd.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AusdIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAusd.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AusdIcon.displayName = 'AusdIcon';
16+
}
17+
18+
export default AusdIcon;
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 { iconStataausd } from "../../../icons/full/build/icon-stataausd.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StataausdIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStataausd.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StataausdIcon.displayName = 'StataausdIcon';
16+
}
17+
18+
export default StataausdIcon;

0 commit comments

Comments
 (0)