mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 21:47:51 +00:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
|
|
export default function LogoIcon(props: React.ComponentProps<'img'>) {
|
|
return (
|
|
<img src="/logo-square-black.png" alt="scape squared logo" />
|
|
);
|
|
}
|