mango-web/components/Logo.tsx

23 lines
407 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"
className="inline-block"
/>
2021-03-03 11:15:38 -08:00
<div
style={{
fontWeight: 700,
marginRight: "1em",
marginLeft: 8,
}}
2021-03-03 11:15:38 -08:00
className="hidden md:inline-block text-xl pt-2"
>
2021-03-01 21:20:53 -08:00
Mango Markets
2021-03-03 11:15:38 -08:00
</div>
2021-03-01 21:20:53 -08:00
</>
);
}