How to get Custom SF Symbol to Display Properly in SwiftUI

A Custom SF symbol template doesn't render properly when using a SwiftUI Image. For example:
Code Block
Image(uiImage:UIImage(named:"my_custom_symbol")!)

The resulting image is stretched to fit the space defined by the left and right margins of the custom symbol.

It works fine in a UIKit view.
Have you tried Image("my_custom_symbol")?
How to get Custom SF Symbol to Display Properly in SwiftUI
 
 
Q