Skip to content

Commit dfc6f6c

Browse files
feat: remove logo import from AppLogo component for cleaner implementation
1 parent e779de1 commit dfc6f6c

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

UIs/Merchants/src/assets/logo.png

-58.6 KB
Binary file not shown.

UIs/Merchants/src/shared/components/global/logo/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { cn } from '@/shared/utils';
2-
import logo from "../../../../assets/logo.png";
32

43
interface AppLogoProps {
54
className?: string;
@@ -8,7 +7,7 @@ interface AppLogoProps {
87
export function AppLogo({ className }: AppLogoProps) {
98
return (
109
<img
11-
src={logo}
10+
src={""}
1211
width={420}
1312
height={400}
1413
className={cn('w-full', className)}

0 commit comments

Comments
 (0)