import SwiftUI

struct ContentView: View {
    var body: some View {
        Image(privateSystemName: "apple.silicon")
      // Remember, .fit() and .frame() only work properly on macOS for the moment. I'm going to try to fix it on iOS soon.
        .fit()
        .frame(width: 50, height: 50)
    }
}