aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/ethereum.jsx
blob: 7c29401750c5114fd721b3b35dfadc03f64885ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import Icon from "../icon.jsx";

export default function Ethereum(props) {
  return (
    <Icon width={156} height={256} {...props}>
      <path
        d="M0,128 L80,0 L80,93.5358372 L0,128 Z M156,128 L80,93.5809573 L80,0 L156,128 Z"
        fill="#828384"
        id="Combined-Shape"
      />
      <path
        d="M80,176 L0,131.00396 L80,96 L80,176 Z M156,131.011473 L80,176 L80,96 L156,131.011473 Z"
        fill="#343535"
        id="Combined-Shape"
      />
      <path
        d="M0,148 L80,194.180711 L80,256 L0,148 Z M156,148 L80,256 L80,194.175361 L156,148 Z"
        fill="#828384"
        id="Combined-Shape"
      />
      <polygon fill="#2F3030" id="Path-3" points="156 128 80 93.5809573 80 0" />
      <polygon
        fill="#131313"
        id="Path-5"
        points="156 131.011473 80 96 80 176"
      />
      <polygon
        fill="#2F3030"
        id="Path-7"
        points="156 148 80 194.175361 80 256"
      />
    </Icon>
  );
}