File size: 639 Bytes
2bd3674
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
function SeamlessLogo() {
  return (
    <svg
      width="24"
      height="24"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg">
      <circle cx="12" cy="12" r="12" fill="#1C2B33" />
      <rect x="7" y="9" width="2" height="6" rx="1" fill="white" />
      <rect
        x="15"
        y="9"
        width="2"
        height="6"
        rx="1"
        fill="white"
        fill-opacity="0.5"
      />
      <rect
        x="11"
        y="6"
        width="2"
        height="12"
        rx="1"
        fill="white"
        fill-opacity="0.5"
      />
    </svg>
  );
}

export default SeamlessLogo;