xmr-btc-swap/docs/components/Logo.tsx
Mohan e3e1ff5f17
rebranding: eigenwallet (#461)
* rebranding: Change github/UnstoppableSwap to github/eigenwallet

* rebranding: change Unstoppable -> eigenwallet in a bunch of places

* rebranding: change tauri icon
2025-07-17 16:31:29 +02:00

16 lines
352 B
TypeScript

import Image from "next/image";
export default function Logo() {
return (
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
<Image
src="/favicon.svg"
alt="eigenwallet"
width={32}
height={32}
style={{ borderRadius: "20%" }}
/>
<span>eigenwallet</span>
</div>
);
}