commerce/components/logo-square.tsx
Zubair Mughal cfdc043a5f initial setup
navbar styling
2024-03-24 12:32:31 -05:00

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>
);
}