diff --git a/public/tokens/dwsteth.svg b/public/tokens/dwsteth.svg new file mode 100644 index 0000000..e0a0ced --- /dev/null +++ b/public/tokens/dwsteth.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/tokens/gear.svg b/public/tokens/gear.svg new file mode 100644 index 0000000..46c90c3 --- /dev/null +++ b/public/tokens/gear.svg @@ -0,0 +1,731 @@ + + diff --git a/public/tokens/kovan.tokenlist.json b/public/tokens/kovan.tokenlist.json deleted file mode 100644 index 83aa7d1..0000000 --- a/public/tokens/kovan.tokenlist.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Gearbox TokenList", - "logoURI": "https://ipfs.infura.io/ipfs/QmW352GziwqjYCF8F9kqEVbHdnHBoEf5EeWbwZypcuBbXq", - "keywords": ["audited", "verified", "special tokens"], - "timestamp": "2020-06-12T00:00:00+00:00", - "tokens": [ - { - "chainId": 1, - "address": "0x9DC7B33C3B63fc00ed5472fBD7813eDDa6a64752", - "symbol": "DAI", - "name": "DAI", - "decimals": 18, - "logoURI": "https://static.gearbox.fi/tokens/dai.svg" - }, - { - "chainId": 1, - "address": "0x6C994935826574E870549F09efF43BA8089A3D25", - "symbol": "LINK", - "name": "Chainlink", - "decimals": 18, - "logoURI": "https://static.gearbox.fi/tokens/link.svg" - }, - { - "chainId": 1, - "address": "0x633317172c0D41451F62025D73CE59065A370a50", - "symbol": "REP", - "name": "Augur token", - "decimals": 18, - "logoURI": "https://static.gearbox.fi/tokens/repv2.svg" - }, - { - "chainId": 1, - "address": "0xB48891df9267EF65AABd32F497F6F2d1eB22A186", - "symbol": "SNX", - "name": "Synthetix token", - "decimals": 18, - "logoURI": "https://static.gearbox.fi/tokens/snx.svg" - }, - { - "chainId": 1, - "address": "0x31EeB2d0F9B6fD8642914aB10F4dD473677D80df", - "symbol": "USDC", - "name": "USDC token", - "decimals": 6, - "logoURI": "https://static.gearbox.fi/tokens/usdc.svg" - }, - { - "chainId": 1, - "address": "0xE36bC5d8b689AD6d80e78c3e736670e80d4b329D", - "symbol": "WBTC", - "name": "Wrapped BTC", - "decimals": 8, - "logoURI": "https://static.gearbox.fi/tokens/wbtc.svg" - }, - { - "chainId": 1, - "address": "0xB730c1449c58f29C69df33ccD5bd9d3cA66b23C1", - "symbol": "ZRX", - "name": "0x token", - "decimals": 18, - "logoURI": "https://static.gearbox.fi/tokens/zrx.svg" - } - ], - "version": { - "major": 1, - "minor": 0, - "patch": 0 - } -} diff --git a/src/icons/pending.tsx b/src/icons/pending.tsx index 0e42552..13e2e97 100644 --- a/src/icons/pending.tsx +++ b/src/icons/pending.tsx @@ -8,7 +8,6 @@ export const IconPending = ({ size, style, onClick }: IconProps) => ( size={size} onClick={onClick} style={{ - marginTop: "2px", animationDuration: "3s", animationName: "spin", animationIterationCount: "infinite", diff --git a/src/icons/robotDead.tsx b/src/icons/robotDead.tsx new file mode 100644 index 0000000..c0ab176 --- /dev/null +++ b/src/icons/robotDead.tsx @@ -0,0 +1,19 @@ +import React from "react"; + +import { IconProps } from "../core/icon"; + +export const IconDeadRobot = ({ style, onClick, size = 24 }: IconProps) => ( + + + +); diff --git a/src/icons/slidersSimple.tsx b/src/icons/slidersSimple.tsx new file mode 100644 index 0000000..ccf9845 --- /dev/null +++ b/src/icons/slidersSimple.tsx @@ -0,0 +1,20 @@ +import React from "react"; + +import { IconProps } from "../core/icon"; + +export const IconSliderSimple = ({ style, onClick, size = 24 }: IconProps) => ( + + + +); diff --git a/src/index.tsx b/src/index.tsx index b0fdc14..766eb6c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -15,8 +15,10 @@ export { IconLogout } from "./icons/logout"; export { IconNavigation } from "./icons/navigation"; export { IconNexus } from "./icons/nexus"; export { IconPending } from "./icons/pending"; +export { IconDeadRobot } from "./icons/robotDead"; export { IconSearch } from "./icons/search"; export { IconShield } from "./icons/shield"; +export { IconSliderSimple } from "./icons/slidersSimple"; export { SuccessCircle } from "./icons/successCircle"; export { IconTool } from "./icons/tool"; export { IconTriangle } from "./icons/triangle";