mango-web/components/Logo.tsx

10 lines
207 B
TypeScript
Raw Normal View History

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