mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 04:37:51 +00:00
21 lines
485 B
TypeScript
21 lines
485 B
TypeScript
import Image from 'next/image';
|
|
|
|
export default function LogoSquare({ dark = false }: { dark?: boolean }) {
|
|
return (
|
|
<div className="h-12 md:h-[55px]">
|
|
{dark ? (
|
|
<Image src="/dark-logo.svg" alt="Logo" width={327} height={61} className="h-full w-full" />
|
|
) : (
|
|
<Image
|
|
src="/logo.svg"
|
|
alt="Logo"
|
|
width={327}
|
|
height={61}
|
|
className="h-full w-full"
|
|
priority
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|