mango-web/components/Logo.tsx

23 lines
407 B
TypeScript

export default function Logo() {
return (
<>
<img
height="40px"
width="40px"
src="/mango.png"
className="inline-block"
/>
<div
style={{
fontWeight: 700,
marginRight: "1em",
marginLeft: 8,
}}
className="hidden md:inline-block text-xl pt-2"
>
Mango Markets
</div>
</>
);
}