Skip to content

Commit 56e5994

Browse files
authored
Merge pull request #79 from bgd-labs/feat/add-eurc
feat: add eurc icon
2 parents 13d3df6 + f6e9456 commit 56e5994

31 files changed

+238
-3
lines changed

icons/full/aeurc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/eurc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/stataeurc.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
@@ -993,6 +993,35 @@
993993
}
994994
}
995995
},
996+
{
997+
"type": [
998+
"asset"
999+
],
1000+
"symbol": "eurc",
1001+
"name": "EURC",
1002+
"aliases": [
1003+
"EURC",
1004+
"aAvaEURC",
1005+
"variableDebtAvaEURC",
1006+
"stataAvaEURC"
1007+
],
1008+
"variations": [
1009+
"aToken",
1010+
"stataToken"
1011+
],
1012+
"icons": {
1013+
"mono": "icons/mono/eurc.svg",
1014+
"full": "icons/full/eurc.svg",
1015+
"aToken": {
1016+
"mono": "icons/mono/aeurc.svg",
1017+
"full": "icons/full/aeurc.svg"
1018+
},
1019+
"stataToken": {
1020+
"mono": "icons/mono/stataeurc.svg",
1021+
"full": "icons/full/stataeurc.svg"
1022+
}
1023+
}
1024+
},
9961025
{
9971026
"type": [
9981027
"asset"

icons/mono/aeurc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/eurc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/stataeurc.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 { iconAeurc } from "../../../icons/full/build/icon-aeurc.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AeurcIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAeurc.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AeurcIcon.displayName = 'AeurcIcon';
16+
}
17+
18+
export default AeurcIcon;
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 { iconEurc } from "../../../icons/full/build/icon-eurc.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const EurcIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconEurc.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
EurcIcon.displayName = 'EurcIcon';
16+
}
17+
18+
export default EurcIcon;
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 { iconStataeurc } from "../../../icons/full/build/icon-stataeurc.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StataeurcIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStataeurc.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StataeurcIcon.displayName = 'StataeurcIcon';
16+
}
17+
18+
export default StataeurcIcon;

0 commit comments

Comments
 (0)