Skip to content

Commit

Permalink
Merge pull request #161 from jjeongsu/fix/svg
Browse files Browse the repository at this point in the history
[FIX] : svg 아이콘 경로 수정
  • Loading branch information
jjeongsu authored Feb 7, 2025
2 parents eb353f1 + a0511b2 commit 6481c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Homepage/components/Community/Carousel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ const Carousel = ({ slides, options }) => {
disabled={prevBtnDisabled}
className="absolute top-133 -left-35 w-30 h-30 flex justify-center items-center rounded-full shadow-2md"
>
<img src={'/public/icons/left-array.svg'} />
<img src="/icons/left-array.svg" alt="left-carousel-button" />
</button>
<button
onClick={onNextButtonClick}
disabled={nextBtnDisabled}
className="absolute top-133 -right-35 w-30 h-30 flex justify-center items-center rounded-full shadow-2md"
>
<img src={'/public/icons/right-array2.svg'} />
<img src="/icons/right-array2.svg" alt="right-carousel-button" />
</button>
</div>
</div>
Expand Down

0 comments on commit 6481c50

Please sign in to comment.