Skip to content

Commit 82fde6e

Browse files
authored
Merge pull request #74 from bgd-labs/feat/add-ws
feat: add ws icon
2 parents 2198aee + 4d49a07 commit 82fde6e

30 files changed

+248
-2
lines changed

icons/full/aws.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/stataws.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/full/ws.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/icons.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3661,6 +3661,30 @@
36613661
}
36623662
}
36633663
},
3664+
{
3665+
"type": [
3666+
"asset"
3667+
],
3668+
"symbol": "ws",
3669+
"name": "Wrapped S",
3670+
"aliases": [],
3671+
"variations": [
3672+
"aToken",
3673+
"stataToken"
3674+
],
3675+
"icons": {
3676+
"mono": "icons/mono/ws.svg",
3677+
"full": "icons/full/ws.svg",
3678+
"aToken": {
3679+
"mono": "icons/mono/aws.svg",
3680+
"full": "icons/full/aws.svg"
3681+
},
3682+
"stataToken": {
3683+
"mono": "icons/mono/stataws.svg",
3684+
"full": "icons/full/stataws.svg"
3685+
}
3686+
}
3687+
},
36643688
{
36653689
"type": [
36663690
"asset"

icons/mono/aws.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/stataws.svg

Lines changed: 1 addition & 0 deletions
Loading

icons/mono/ws.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 { iconAws } from "../../../icons/full/build/icon-aws.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const AwsIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconAws.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
AwsIcon.displayName = 'AwsIcon';
16+
}
17+
18+
export default AwsIcon;
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 { iconStataws } from "../../../icons/full/build/icon-stataws.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const StatawsIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconStataws.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
StatawsIcon.displayName = 'StatawsIcon';
16+
}
17+
18+
export default StatawsIcon;
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 { iconWs } from "../../../icons/full/build/icon-ws.icon";
7+
import { IconComponentBaseProps } from "../../../utils";
8+
import { Image } from "../../Base/Image";
9+
10+
const WsIcon = (props: IconComponentBaseProps) => {
11+
return <Image svgCode={iconWs.data} {...props} />;
12+
};
13+
14+
if (process.env.NODE_ENV !== 'production') {
15+
WsIcon.displayName = 'WsIcon';
16+
}
17+
18+
export default WsIcon;

0 commit comments

Comments
 (0)