mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
* remove unused imports and localhost added as a local domain * Logo, Favicon and copyrights changed * Logo, Favicon and copyrights changed
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
const Logo = ({ className = '', ...props }) => (
|
|
<img src='../../../ckube_small.svg'
|
|
width="32"
|
|
height="32"
|
|
className={className}
|
|
{...props}
|
|
alt="ckube"></img>
|
|
)
|
|
|
|
export default Logo
|