commerce/components/logo-square.tsx
Chloe af8739d695
fix: adjust layout to fit within mobile view
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-04-16 20:13:21 +07:00

11 lines
295 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-[20px] w-[20px] lg:h-[24px] lg:w-[24px]" />
</div>
);
}