UITabBar in iOS 15 forces filled SFSymbols (SwiftUI)

The iOS 15 UITabBar is using filled SFSymbols, although I had specified outlined symbols!

Is it possible to get the UITabBar to behave like in iOS 14 and displaying the outlined symbols like intended?

TabView {
    ArticleListView(articles: model.calls, title: "...").tabItem {
        Text("Calls")
        Image(systemName: "doc.append")
    }
    ArticleListView(articles: model.news, title: "...").tabItem {
        Text("News")
        Image(systemName: "newspaper")
    }
    ArticleListView(articles: model.events, title: "...").tabItem {
        Text("Events")
        Image(systemName: "calendar")
    }
    MoreView().tabItem {
        Text("More")
        Image(systemName: "ellipsis")
    }
}

I found a workaround to enforce the outlined symbol:

let symbolConfiguration = UIImage.SymbolConfiguration(weight: .medium)
let image = UIImage(systemName: "doc.append", withConfiguration: symbolConfiguration)
Image(uiImage: image!)
UITabBar in iOS 15 forces filled SFSymbols (SwiftUI)
 
 
Q