Skip to content

Commit 9f04bb6

Browse files
authored
[WMS-141] 로고 수정
[WMS-141] 로고 수정
2 parents 3fceafd + 04d3eb6 commit 9f04bb6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/widgets/sidebar/ui/Sidebar.style.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const Logo = styled.div`
2121
display: flex;
2222
justify-content: center;
2323
align-items: center;
24+
gap: 5px;
2425
font-size: 24px;
2526
font-weight: ${theme.fontWeight.bold};
2627
color: ${theme.colors.neutral50};

src/widgets/sidebar/ui/Sidebar.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { AnimatePresence } from 'framer-motion';
2+
import { BoxesIcon } from 'lucide-react';
23
import { getUserInfoFromCookie } from 'entities/user/model/cookies';
34
import { hasAccess } from '../lib';
45
import { MENU_ITEMS } from '../model/menuConfig';
@@ -59,7 +60,10 @@ export function Sidebar({ currentPath }: SidebarProps) {
5960
<S.SidebarContainer>
6061
<S.SidebarWrapper>
6162
<S.LogoAndMenuWrapper>
62-
<S.Logo>차곡차곡</S.Logo>
63+
<S.Logo>
64+
<BoxesIcon />
65+
차곡차곡
66+
</S.Logo>
6367
<S.SidebarMenu>{MENU_ITEMS.map(renderMenuItem)}</S.SidebarMenu>
6468
</S.LogoAndMenuWrapper>
6569
</S.SidebarWrapper>

0 commit comments

Comments
 (0)