mango-web/components/Logo.tsx

11 lines
236 B
TypeScript
Raw Normal View History

export default function Logo() {
return (
2021-03-01 21:20:53 -08:00
<>
<img height="40px" width="40px" src="/mango.png" />
<span style={{ fontWeight: 700, marginRight: "1em", marginLeft: 8 }}>
Mango Markets
</span>
</>
);
}