mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 06:01:21 +00:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import Image from 'next/image'
|
|
import MainLogo from '../../../public/main-logo.png'
|
|
|
|
const Logo = ({ className = '', ...props }) => (
|
|
<Image src={MainLogo} width={35} height={35} />
|
|
)
|
|
|
|
export default Logo
|