MNN/apps/iOS/MNNLLMChat/MNNLLMiOS/ChatHistory/Views/ModelIconView.swift

24 lines
487 B
Swift

//
// ModelIconView.swift
// MNNLLMiOS
// Created by () on 2025/1/15.
//
import SwiftUI
struct ModelIconView: View {
let modelId: String
var body: some View {
if let iconName = ModelIconManager.shared.getModelImage(with: modelId) {
Image(iconName)
.resizable()
.scaledToFit()
} else {
Image("mnn_icon")
.resizable()
.scaledToFit()
}
}
}