Anna Sun
Initial OSS demo commit
2bd3674
raw
history blame
No virus
639 Bytes
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;