mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
18 lines
586 B
XML
18 lines
586 B
XML
import Image from 'next/image';
|
|
|
|
export default function LogoIcon() {
|
|
return <Image src={'/images/logo.png'} width={64} height={58} alt="logo"></Image>;
|
|
// return (
|
|
// <svg
|
|
// xmlns="http://www.w3.org/2000/svg"
|
|
// aria-label={`${process.env.SITE_NAME} logo`}
|
|
// viewBox="0 0 32 28"
|
|
// {...props}
|
|
// className={clsx('h-4 w-4 fill-black dark:fill-white', props.className)}
|
|
// >
|
|
// <path d="M21.5758 9.75769L16 0L0 28H11.6255L21.5758 9.75769Z" />
|
|
// <path d="M26.2381 17.9167L20.7382 28H32L26.2381 17.9167Z" />
|
|
// </svg>
|
|
// );
|
|
}
|