Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions public/tokens/dwsteth.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
731 changes: 731 additions & 0 deletions public/tokens/gear.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 0 additions & 69 deletions public/tokens/kovan.tokenlist.json

This file was deleted.

1 change: 0 additions & 1 deletion src/icons/pending.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export const IconPending = ({ size, style, onClick }: IconProps) => (
size={size}
onClick={onClick}
style={{
marginTop: "2px",
animationDuration: "3s",
animationName: "spin",
animationIterationCount: "infinite",
Expand Down
19 changes: 19 additions & 0 deletions src/icons/robotDead.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from "react";

import { IconProps } from "../core/icon";

export const IconDeadRobot = ({ style, onClick, size = 24 }: IconProps) => (
<svg
width={size}
height={size}
style={style}
onClick={onClick}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<path
d="M10.62 14.94L9.56 16L10.62 17.06L9.56 18.12L8.5 17.06L7.44 18.12L6.38 17.06L7.44 16L6.38 14.94L7.44 13.88L8.5 14.94L9.56 13.88L10.62 14.94ZM16.56 13.88L15.5 14.94L14.44 13.88L13.38 14.94L14.44 16L13.38 17.06L14.44 18.12L15.5 17.06L16.56 18.12L17.62 17.06L16.56 16L17.62 14.94L16.56 13.88ZM23 15.5V18.5C23 19.05 22.55 19.5 22 19.5H21V20.5C21 21.61 20.11 22.5 19 22.5H5C3.9 22.5 3 21.61 3 20.5V19.5H2C1.45 19.5 1 19.05 1 18.5V15.5C1 14.95 1.45 14.5 2 14.5H3C3 10.63 6.13 7.5 10 7.5H11V6.23C10.4 5.89 10 5.24 10 4.5C10 3.4 10.9 2.5 12 2.5C13.1 2.5 14 3.4 14 4.5C14 5.24 13.6 5.89 13 6.23V7.5H14C17.87 7.5 21 10.63 21 14.5H22C22.55 14.5 23 14.95 23 15.5ZM21 16.5H19V14.5C19 11.74 16.76 9.5 14 9.5H10C7.24 9.5 5 11.74 5 14.5V16.5H3V17.5H5V20.5H19V17.5H21V16.5Z"
fill="#ABB2CB"
/>
</svg>
);
20 changes: 20 additions & 0 deletions src/icons/slidersSimple.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from "react";

import { IconProps } from "../core/icon";

export const IconSliderSimple = ({ style, onClick, size = 24 }: IconProps) => (
<svg
width={size}
height={size}
style={style}
onClick={onClick}
viewBox="0 0 14 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.2 6.66667C2.898 6.66667 1.813 7.52 1.498 8.66667H0V10H1.498C1.813 11.1467 2.898 12 4.2 12C5.502 12 6.587 11.1467 6.902 10H14V8.66667H6.902C6.587 7.52 5.502 6.66667 4.2 6.66667ZM4.2 10.6667C3.43 10.6667 2.8 10.0667 2.8 9.33333C2.8 8.6 3.43 8 4.2 8C4.97 8 5.6 8.6 5.6 9.33333C5.6 10.0667 4.97 10.6667 4.2 10.6667ZM12.502 2C12.187 0.853333 11.102 0 9.8 0C8.498 0 7.413 0.853333 7.098 2H0V3.33333H7.098C7.413 4.48 8.498 5.33333 9.8 5.33333C11.102 5.33333 12.187 4.48 12.502 3.33333H14V2H12.502ZM9.8 4C9.03 4 8.4 3.4 8.4 2.66667C8.4 1.93333 9.03 1.33333 9.8 1.33333C10.57 1.33333 11.2 1.93333 11.2 2.66667C11.2 3.4 10.57 4 9.8 4Z"
fill="white"
/>
</svg>
);
2 changes: 2 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down