Big Sur SF Symbols sizes

I see that Big Sur added -[NSImage imageWithSystemSymbolName:accessibilityDescription]. Unlike its iOS countertpart, there is no UIImageSymbolConfiguration that allows me to choose a different size class.

Have I overlooked this? Or is it coming in a future beta?
Code Block
import UIKit
let configuration = UIImage.SymbolConfiguration(scale: .large)
let image = UIImage(systemName: "leaf.fill", withConfiguration: configuration)


A symbol configuration object and an NSImage method that specializes a symbol with a given configuration are coming soon, and were shown in the SF Symbols 2 WWDC session.
Big Sur SF Symbols sizes
 
 
Q