Skip to content

Commit

Permalink
feat: BottleAlert 디자인시스템 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
leemhyungyu committed Sep 20, 2024
1 parent 743bf52 commit 3e71208
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct BottleAlertView<A, M, T>: View where A: View, M: View {
VStack(spacing: 0) {
alertImage
title
.padding(.bottom, 4)
.padding(.bottom, 7)
messageView
actionsView
}
Expand All @@ -53,7 +53,7 @@ struct BottleAlertView<A, M, T>: View where A: View, M: View {

private extension BottleAlertView {
var alertImage: some View {
BottleImageView(type: .local(bottleImageSystem: .icom(.siren)))
BottleImageView(type: .local(bottleImageSystem: .icom(.warning)))
.foregroundStyle(to: ColorToken.icon(.primary))
.padding(.top, .lg)
.padding(.bottom, .xs)
Expand All @@ -65,7 +65,7 @@ private extension BottleAlertView {
message(data)
.multilineTextAlignment(.center)
.padding(.bottom, .sm)

.lineSpacing(5)
} else {
EmptyView()
}
Expand Down

0 comments on commit 3e71208

Please sign in to comment.