Skip to content

Commit 30c0a55

Browse files
committed
feat(swipe): 좋아요 싫어요 아이콘 변경
1 parent 0952eea commit 30c0a55

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

public/dislike_icon.png

2.96 KB
Loading

public/like_icon.png

2.67 KB
Loading

src/pages/swap/SwipeCards.tsx

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,7 @@ function SwipeCards() {
463463
<div
464464
style={{
465465
display: "flex",
466-
flexDirection: "column",
467466
alignItems: "center",
468-
gap: 8,
469467
}}
470468
>
471469
<div
@@ -478,14 +476,14 @@ function SwipeCards() {
478476
display: "flex",
479477
alignItems: "center",
480478
justifyContent: "center",
481-
fontSize: 20,
482479
}}
483480
>
484-
👎
481+
<img
482+
src="/dislike_icon.png"
483+
alt="싫어요"
484+
style={{ width: 24, height: 24 }}
485+
/>
485486
</div>
486-
<span style={{ fontSize: 12, color: "#6b7280", fontWeight: 500 }}>
487-
싫어요
488-
</span>
489487
</div>
490488

491489
{/* 중앙 안내 문구 */}
@@ -525,9 +523,7 @@ function SwipeCards() {
525523
<div
526524
style={{
527525
display: "flex",
528-
flexDirection: "column",
529526
alignItems: "center",
530-
gap: 8,
531527
}}
532528
>
533529
<div
@@ -540,14 +536,14 @@ function SwipeCards() {
540536
display: "flex",
541537
alignItems: "center",
542538
justifyContent: "center",
543-
fontSize: 20,
544539
}}
545540
>
546-
👍
541+
<img
542+
src="/like_icon.png"
543+
alt="좋아요"
544+
style={{ width: 24, height: 24 }}
545+
/>
547546
</div>
548-
<span style={{ fontSize: 12, color: "#6b7280", fontWeight: 500 }}>
549-
좋아요
550-
</span>
551547
</div>
552548
</div>
553549

0 commit comments

Comments
 (0)