Skip to content

Commit

Permalink
fix : chore 이미지 경로 수정 (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloWook authored Nov 6, 2024
1 parent 24537ee commit c655124
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/shared/ReactionAddButton/ui/ReactionAddButton.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { StyledReactionButton } from '../../ReactionButton/ui/ReactionButton.styled';
import React from 'react';
import { StyledEmotionIcon } from '../../EmotionIcon/ui/EmotionIcon.styled';
import plusSvg from '@/shared/assets/reaction_plus.svg';

interface ReactionAddButtonProps {
isClicked: boolean;
Expand All @@ -25,7 +26,7 @@ const ReactionAddButton = ({
onClick={handleClick}
>
<StyledEmotionIcon width="80%" height="80%">
<img src="./reaction_plus.svg" alt="이미지 추가" />
<img src={plusSvg} alt="이미지 추가" />
</StyledEmotionIcon>
</StyledReactionButton>
);
Expand Down

0 comments on commit c655124

Please sign in to comment.