mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 21:27:50 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
import Image from "next/image";
|
|
|
|
export default function LogoIcon(props: React.ComponentProps<'img'>) {
|
|
return (
|
|
<Image width="100" height="50" src="/logo-square-black.png" alt="scape squared logo" />
|
|
);
|
|
}
|