mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 07:56:59 +00:00
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
import Image from 'next/image';
|
|
import SKLogo from './icons/logo.svg';
|
|
|
|
export default function LogoSquare({ size }: { size?: 'sm' | undefined }) {
|
|
return (
|
|
<div className={'flex items-center'}>
|
|
<Image
|
|
src={SKLogo}
|
|
alt="Logo"
|
|
width={size === 'sm' ? 10 : 50}
|
|
height={size === 'sm' ? 10 : 50}
|
|
layout="fixed"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|