mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-22 17:10:59 -05:00
* rebranding: Change github/UnstoppableSwap to github/eigenwallet * rebranding: change Unstoppable -> eigenwallet in a bunch of places * rebranding: change tauri icon
16 lines
352 B
TypeScript
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>
|
|
);
|
|
}
|