Skip to content

Commit

Permalink
[Fix/#321] IcNext 아이콘 새로 추출 및 간격 조정 (#322)
Browse files Browse the repository at this point in the history
* feat: IcNext 아이콘 새로 추출

* design: 간격 1.2rem으로 수정
  • Loading branch information
ExceptAnyone authored Sep 21, 2024
1 parent e54608a commit 9bfb37d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions public/svg/ic_next.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/assets/svg/IcNext.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import type { SVGProps } from 'react';

const SvgIcNext = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 24" {...props}>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" {...props}>
<path
stroke="#9FA4AE"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.511}
d="m8.5 4 8 8-8 8"
d="m9.5 7 5 5-5 5"
/>
</svg>
);
Expand Down
1 change: 0 additions & 1 deletion src/components/common/NavigateBox/NavigateBox.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ export const childrenStyle = (theme: Theme) => css`
export const iconStyle = css`
width: 2.4rem;
height: 2.4rem;
padding: 0.2rem;
`;
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const profileContainer = css`

export const profileWrapper = css`
${flexGenerator('row', 'flex-start')};
gap: 0.7rem;
gap: 1.2rem;
`;

export const profileTextBox = css`
Expand Down
1 change: 0 additions & 1 deletion src/pages/myPage/page/GuestMyPage/GuestMyPage.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export const logoutTextStyle = (theme: Theme) => css`
export const iconStyle = css`
width: 2.4rem;
height: 2.4rem;
padding: 0.2rem;
`;

export const editIconStyle = css`
Expand Down
5 changes: 3 additions & 2 deletions src/pages/myPage/page/HostMyPage/HostMyPage.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export const profileWrapper = css`
padding: 0 2rem 2.8rem;
`;

export const divdier = css`
export const divdier = (theme: Theme) => css`
width: 100%;
height: 0.8rem;
background-color: #f3f3f3;
background-color: ${theme.color.bg_white0};
`;

export const navigateBoxContainer = css`
Expand All @@ -47,6 +47,7 @@ export const logoutTextStyle = (theme: Theme) => css`
${theme.font['subhead03-m-16']}
color: ${theme.color.blackgray}
`;

export const iconStyle = css`
width: 2.4rem;
height: 2.4rem;
Expand Down

0 comments on commit 9bfb37d

Please sign in to comment.