AzureCommunicationUI/sdk/AzureCommunicationUIChat/Sources/Presentation/SwiftUI/Chat/ChatViewComponents/Message/HtmlMessageView.swift (12 lines of code) (raw):
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
import SwiftUI
struct HtmlMessageView: View {
let messageModel: ChatMessageInfoModel
var body: some View {
HStack {
Text(messageModel.getContentLabel())
.font(.caption2)
.foregroundColor(Color(StyleProvider.color.textSecondary))
Spacer()
}
}
}