Skip to content

Commit 7e3a39f

Browse files
authored
Merge pull request #93 from bgd-labs/feat/add-eBTC-icon
feat: add eBTC icon
2 parents 55bb550 + ce320c4 commit 7e3a39f

31 files changed

+238
-3
lines changed

icons/full/aebtc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/ebtc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/stataebtc.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
@@ -869,6 +869,35 @@
869869
}
870870
}
871871
},
872+
{
873+
"type": [
874+
"asset"
875+
],
876+
"symbol": "ebtc",
877+
"name": "eBTC",
878+
"aliases": [
879+
"eBTC",
880+
"EBTC",
881+
"aEtheBTC",
882+
"stataEtheBTC"
883+
],
884+
"variations": [
885+
"aToken",
886+
"stataToken"
887+
],
888+
"icons": {
889+
"mono": "icons/mono/ebtc.svg",
890+
"full": "icons/full/ebtc.svg",
891+
"aToken": {
892+
"mono": "icons/mono/aebtc.svg",
893+
"full": "icons/full/aebtc.svg"
894+
},
895+
"stataToken": {
896+
"mono": "icons/mono/stataebtc.svg",
897+
"full": "icons/full/stataebtc.svg"
898+
}
899+
}
900+
},
872901
{
873902
"type": [
874903
"asset"

icons/mono/aebtc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/ebtc.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/stataebtc.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 { iconAebtc } from "../../../icons/full/build/icon-aebtc.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AebtcIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAebtc.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AebtcIcon.displayName = 'AebtcIcon';
16+
}
17+
18+
export default AebtcIcon;
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 { iconEbtc } from "../../../icons/full/build/icon-ebtc.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const EbtcIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconEbtc.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
EbtcIcon.displayName = 'EbtcIcon';
16+
}
17+
18+
export default EbtcIcon;
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 { iconStataebtc } from "../../../icons/full/build/icon-stataebtc.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StataebtcIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStataebtc.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StataebtcIcon.displayName = 'StataebtcIcon';
16+
}
17+
18+
export default StataebtcIcon;

0 commit comments

Comments
 (0)