Skip to content

Commit e618fc0

Browse files
Design/MY수평조절, 네비바 외 아이콘 전면교체
1 parent 69df441 commit e618fc0

19 files changed

+28
-17
lines changed

src/components/follow/UserSearch.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useCallback, useEffect, useState } from "react";
2-
import searchIcon from "../../img/searchIcon.png";
2+
import searchIcon from "../../img/searchIcon.svg";
33
import { debounce } from "lodash";
44
import { UserApi } from "../../api/UserApi";
55
import SearchCards from "./SearchCards";

src/components/layout/BottomNavi.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const BottomNavi = () => {
4848
handleIconClick("My");
4949
navigate("/profile");
5050
}}
51-
className="cursor-pointer px-[4px] py-[4px] w-[30px] h-[30px]"
51+
className="cursor-pointer px-[4px] py-[7px] w-[30px] h-[30px]"
5252
>
5353
<img
5454
src={onIcon === "My" ? onMy : offMy}

src/components/layout/TopNavTitleBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { useNavigate } from "react-router-dom";
3-
import backIncom from "../../img/arrowback.png";
3+
import backIncom from "../../img/arrowback.svg";
44

55
const TopNavTitleBar = ({ children }) => {
66
const navigate = useNavigate();

src/components/modal/JoinerList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useEffect } from "react";
2-
import selectedIcon from "../../img/participantsSelected.png";
2+
import selectedIcon from "../../img/participantsSelected.svg";
33

44
//props로 받아올 것들...
55
const JoinerList = ({

src/components/mypage/Profile.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useEffect } from "react";
22
import { useDispatch, useSelector } from "react-redux";
33
import { useNavigate } from "react-router-dom";
4-
import Vector from "../../img/Vector.png";
4+
import Vector from "../../img/arrow.svg";
55
import {
66
__getFollowerCount,
77
__getFollowingCount,
@@ -76,7 +76,7 @@ const Profile = () => {
7676
className="flex gap-[160px] p-[15px] border-b-[1px] border-[#BBD7FF] border-solid bg-white w-[375px] h-[50px] cursor-pointer"
7777
>
7878
<span className="text-sm w-[175px] h-[20px]">프로필 변경</span>
79-
<img src={Vector} alt="화살표" className="h-[18px] w-[10px]" />
79+
<img src={Vector} alt="화살표" className="h-[24px] w-[22px]" />
8080
</div>
8181
<div
8282
onClick={() => {
@@ -85,7 +85,7 @@ const Profile = () => {
8585
className="flex gap-[160px] p-[15px] border-b-[1px] border-[#BBD7FF] border-solid bg-white w-[375px] h-[50px] cursor-pointer"
8686
>
8787
<span className="text-sm w-[175px] h-[20px]">비밀번호 재설정</span>
88-
<img src={Vector} alt="화살표" className="h-[18px] w-[10px]" />
88+
<img src={Vector} alt="화살표" className="h-[24px] w-[22px]" />
8989
</div>
9090
<div
9191
onClick={() => {
@@ -95,7 +95,7 @@ const Profile = () => {
9595
>
9696
<span className="text-sm w-[175px] h-[20px]">나의 지난 일정</span>
9797

98-
<img src={Vector} alt="화살표" className="h-[18px] w-[10px]" />
98+
<img src={Vector} alt="화살표" className="h-[24px] w-[22px]" />
9999
</div>
100100
<div
101101
onClick={() => {
@@ -104,7 +104,7 @@ const Profile = () => {
104104
className="flex gap-[160px] p-[15px] border-b-[1px] border-[#BBD7FF] border-solid bg-white w-[375px] h-[50px] cursor-pointer"
105105
>
106106
<span className="text-sm w-[175px] h-[20px]">내게 온 초대 목록</span>
107-
<img src={Vector} alt="화살표" className="h-[18px] w-[10px]" />
107+
<img src={Vector} alt="화살표" className="h-[24px] w-[22px]" />
108108
</div>
109109
<div
110110
onClick={() => {
@@ -113,7 +113,7 @@ const Profile = () => {
113113
className="flex gap-[160px] p-[15px] border-b-[1px] border-[#BBD7FF] border-solid bg-white w-[375px] h-[50px] cursor-pointer"
114114
>
115115
<span className="text-sm w-[175px] h-[20px]">알림 설정</span>
116-
<img src={Vector} alt="화살표" className="h-[18px] w-[10px]" />
116+
<img src={Vector} alt="화살표" className="h-[24px] w-[22px]" />
117117
</div>
118118
<div
119119
onClick={() => {
@@ -124,7 +124,7 @@ const Profile = () => {
124124
<span className="text-sm w-[175px] h-[20px]">
125125
그님스 피드백 보내기
126126
</span>
127-
<img src={Vector} alt="화살표" className="h-[18px] w-[10px]" />
127+
<img src={Vector} alt="화살표" className="h-[24px] w-[22px]" />
128128
</div>
129129
<div
130130
onClick={() => {

src/components/notification/NotificationsList.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import React, { useEffect, useState } from "react";
22
import { EventSourcePolyfill } from "event-source-polyfill";
3-
import mentionIcon from "../../img/mention.png";
4-
import followIcon from "../../img/follow.png";
3+
import mentionIcon from "../../img/mention.svg";
4+
import followIcon from "../../img/follow.svg";
55
import { useNavigate } from "react-router-dom";
66
import { instance } from "../../shared/AxiosInstance";
7-
import refreshIcon from "../../img/refresh.png";
87

98
const NotificationsList = () => {
109
const navigate = useNavigate();

src/img/Vector.png

-309 Bytes
Binary file not shown.

src/img/arrow.svg

Lines changed: 3 additions & 0 deletions
Loading

src/img/arrowback.png

-313 Bytes
Binary file not shown.

src/img/arrowback.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)