diff --git a/Linphone/UI/Call/Fragments/CallsListFragment.swift b/Linphone/UI/Call/Fragments/CallsListFragment.swift index 0cceeb5e1..fbf8f02bd 100644 --- a/Linphone/UI/Call/Fragments/CallsListFragment.swift +++ b/Linphone/UI/Call/Fragments/CallsListFragment.swift @@ -254,7 +254,7 @@ struct CallsListFragment: View { Avatar(contactAvatarModel: callViewModel.callsContactAvatarModel[index]!, avatarSize: 50) } else { VStack { - Image("users-three-square") + Image("video-conference") .renderingMode(.template) .resizable() .frame(width: 28, height: 28) diff --git a/Linphone/UI/Main/Conversations/Fragments/StartConversationFragment.swift b/Linphone/UI/Main/Conversations/Fragments/StartConversationFragment.swift index 428fef85c..1cbf1ed88 100644 --- a/Linphone/UI/Main/Conversations/Fragments/StartConversationFragment.swift +++ b/Linphone/UI/Main/Conversations/Fragments/StartConversationFragment.swift @@ -136,13 +136,13 @@ struct StartConversationFragment: View { }, label: { HStack { HStack(alignment: .center) { - Image("meetings") + Image("users-three") .renderingMode(.template) .resizable() .foregroundStyle(.white) - .frame(width: 20, height: 20, alignment: .leading) + .frame(width: 28, height: 28) } - .padding(16) + .padding(10) .background(Color.orangeMain500) .cornerRadius(40) diff --git a/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift b/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift index 29d217684..97271c986 100644 --- a/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift +++ b/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift @@ -211,7 +211,7 @@ struct HistoryContactFragment: View { } } else { VStack { - Image("users-three-square") + Image("video-conference") .renderingMode(.template) .resizable() .frame(width: 60, height: 60) @@ -324,7 +324,7 @@ struct HistoryContactFragment: View { }, label: { VStack { HStack(alignment: .center) { - Image("users-three-square") + Image("video-conference") .renderingMode(.template) .resizable() .foregroundStyle(Color.grayMain2c600) diff --git a/Linphone/UI/Main/History/Fragments/HistoryListFragment.swift b/Linphone/UI/Main/History/Fragments/HistoryListFragment.swift index 818886fc4..c11f57416 100644 --- a/Linphone/UI/Main/History/Fragments/HistoryListFragment.swift +++ b/Linphone/UI/Main/History/Fragments/HistoryListFragment.swift @@ -109,7 +109,7 @@ struct HistoryRow: View { } } else { VStack { - Image("users-three-square") + Image("video-conference") .renderingMode(.template) .resizable() .frame(width: 28, height: 28) diff --git a/Linphone/UI/Main/History/Fragments/StartCallFragment.swift b/Linphone/UI/Main/History/Fragments/StartCallFragment.swift index 4437d50cb..56707388c 100644 --- a/Linphone/UI/Main/History/Fragments/StartCallFragment.swift +++ b/Linphone/UI/Main/History/Fragments/StartCallFragment.swift @@ -201,13 +201,13 @@ struct StartCallFragment: View { }, label: { HStack { HStack(alignment: .center) { - Image("meetings") + Image("video-conference") .renderingMode(.template) .resizable() .foregroundStyle(.white) - .frame(width: 20, height: 20, alignment: .leading) + .frame(width: 28, height: 28) } - .padding(16) + .padding(10) .background(Color.orangeMain500) .cornerRadius(40)