@@ -21,12 +21,11 @@ import {
2121} from './styles' ;
2222import more from '@assets/default/more.svg' ;
2323import xBtn from '@assets/default/reject.svg' ;
24- import likeBtn from '@assets/default/heart.svg' ; // 컴포넌트화
25- import likeFillBtn from '@assets/default/heart-fill.svg' ; // 컴포넌트화
26- import commentBtn from '@assets/default/message-white.svg' ; // 컴포넌트화
2724import { useNavigate } from 'react-router-dom' ;
2825import defaultProfile from '@assets/default/defaultProfile.svg' ;
2926import dayjs from 'dayjs' ;
27+ import Heart from '@/components/Icons/Heart' ;
28+ import Message from '@/components/Icons/Message' ;
3029import { OptionsBottomSheetProps } from '@components/BottomSheet/OptionsBottomSheet/dto' ;
3130import OptionsBottomSheet from '@components/BottomSheet/OptionsBottomSheet' ;
3231import CommentBottomSheet from '@components/CommentBottomSheet' ;
@@ -240,13 +239,17 @@ const Feed: React.FC<FeedProps> = ({ feed }) => {
240239 < Reaction >
241240 < img className = "button" onClick = { handleRejectButtonClick } src = { xBtn } />
242241 { isLikeClicked ? (
243- < img className = "button" onClick = { handleLikeButtonClick } src = { likeFillBtn } />
242+ < div className = "button" onClick = { handleLikeButtonClick } >
243+ < Heart isFilled = { true } />
244+ </ div >
244245 ) : (
245- < img className = "button" onClick = { handleLikeButtonClick } src = { likeBtn } />
246+ < div className = "button" onClick = { handleLikeButtonClick } >
247+ < Heart />
248+ </ div >
246249 ) }
247250 </ Reaction >
248251 < MatchingBtn onClick = { handleMatchingButtonClick } >
249- < img src = { commentBtn } />
252+ < Message color = "white" />
250253 < StyledText $textTheme = { { style : 'body1-regular' } } color = { theme . colors . white } >
251254 매칭 요청
252255 </ StyledText >
0 commit comments