// // IntelligenceLightView.swift // // Created by Stephan Casas on 2/12/25. // import SwiftUI import AppKit struct IntelligenceLightView: NSViewRepresentable { func makeNSView(context: Context) -> some NSView { guard let nsIntelligenceUILightViewClass = NSClassFromString("NSIntelligenceUILightView") as? NSView.Type else { print("Could not locate pointer for private class NSIntelligenceUILightView.") return NSView(frame: .zero) } return nsIntelligenceUILightViewClass.init(frame: .zero) } func updateNSView(_ nsView: NSViewType, context: Context) { } }