commerce/components/logo-square.tsx
Chloe 409f6b3bda
feat: swap logo and integrate with shopify navigation
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-04-15 18:48:52 +07:00

11 lines
271 B
TypeScript

import clsx from 'clsx';
import LogoIcon from './icons/logo';
export default function LogoSquare() {
return (
<div className={clsx('flex h-[40px] w-[40px] flex-none items-center justify-center')}>
<LogoIcon className="h-[16px] w-[16px]" />
</div>
);
}