From 26271e421d109b736e9782832a6ff642ff3b251f Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Sat, 30 Aug 2025 00:47:50 +0900 Subject: [PATCH] =?UTF-8?q?ic=5Fcan=5Fcircle=EB=A1=9C=20=EB=90=98=EC=96=B4?= =?UTF-8?q?=20=EC=9E=88=EB=8A=94=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20ic=5Fcan?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Chat/ChatTabView.swift | 2 +- SodaLive/Sources/Home/HomeTabView.swift | 2 +- SodaLive/Sources/Live/LiveView.swift | 2 +- SodaLive/Sources/Live/Now/LiveNowItemView.swift | 5 +++-- .../Sources/Live/Reservation/LiveReservationItemView.swift | 5 +++-- .../Sources/Live/Reservation/MyLiveReservationItemView.swift | 5 +++-- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/SodaLive/Sources/Chat/ChatTabView.swift b/SodaLive/Sources/Chat/ChatTabView.swift index 39d4f0b..d6ec397 100644 --- a/SodaLive/Sources/Chat/ChatTabView.swift +++ b/SodaLive/Sources/Chat/ChatTabView.swift @@ -40,7 +40,7 @@ struct ChatTabView: View { .setAppStep(step: .search) } - Image("ic_can_circle") + Image("ic_can") .onTapGesture { AppState .shared diff --git a/SodaLive/Sources/Home/HomeTabView.swift b/SodaLive/Sources/Home/HomeTabView.swift index 3bdd958..d238ad6 100644 --- a/SodaLive/Sources/Home/HomeTabView.swift +++ b/SodaLive/Sources/Home/HomeTabView.swift @@ -31,7 +31,7 @@ struct HomeTabView: View { .setAppStep(step: .search) } - Image("ic_can_circle") + Image("ic_can") .onTapGesture { AppState .shared diff --git a/SodaLive/Sources/Live/LiveView.swift b/SodaLive/Sources/Live/LiveView.swift index e0a95d1..feb7d45 100644 --- a/SodaLive/Sources/Live/LiveView.swift +++ b/SodaLive/Sources/Live/LiveView.swift @@ -34,7 +34,7 @@ struct LiveView: View { .setAppStep(step: .search) } - Image("ic_can_circle") + Image("ic_can") .onTapGesture { AppState .shared diff --git a/SodaLive/Sources/Live/Now/LiveNowItemView.swift b/SodaLive/Sources/Live/Now/LiveNowItemView.swift index 7e4f5b8..17df36d 100644 --- a/SodaLive/Sources/Live/Now/LiveNowItemView.swift +++ b/SodaLive/Sources/Live/Now/LiveNowItemView.swift @@ -64,9 +64,10 @@ struct LiveNowItemView: View { if item.price > 0 { HStack(spacing: 2) { - Image("ic_can_circle") + Image("ic_can") .resizable() - .frame(width: 16, height: 16) + .scaledToFit() + .frame(width: 16) Text("\(item.price)") .font(.custom(Font.preRegular.rawValue, size: 14)) diff --git a/SodaLive/Sources/Live/Reservation/LiveReservationItemView.swift b/SodaLive/Sources/Live/Reservation/LiveReservationItemView.swift index b54f342..bc99a1f 100644 --- a/SodaLive/Sources/Live/Reservation/LiveReservationItemView.swift +++ b/SodaLive/Sources/Live/Reservation/LiveReservationItemView.swift @@ -88,9 +88,10 @@ struct LiveReservationItemView: View { if item.price > 0 { HStack(spacing: 2) { - Image("ic_can_circle") + Image("ic_can") .resizable() - .frame(width: 12, height: 12) + .scaledToFit() + .frame(width: 12) Text("\(item.price)") .font(.custom(Font.preRegular.rawValue, size: 12)) diff --git a/SodaLive/Sources/Live/Reservation/MyLiveReservationItemView.swift b/SodaLive/Sources/Live/Reservation/MyLiveReservationItemView.swift index a468433..ede22d0 100644 --- a/SodaLive/Sources/Live/Reservation/MyLiveReservationItemView.swift +++ b/SodaLive/Sources/Live/Reservation/MyLiveReservationItemView.swift @@ -100,9 +100,10 @@ struct MyLiveReservationItemView: View { if item.price > 0 { HStack(spacing: 2) { - Image("ic_can_circle") + Image("ic_can") .resizable() - .frame(width: 12, height: 12) + .scaledToFit() + .frame(width: 12) Text("\(item.price)") .font(.custom(Font.preRegular.rawValue, size: 12))