'What is unit of Text font size unit in Swift

struct ContentView: View {
    var body: some View {
        Text("Hello, world!")
            .padding()             
            .font(.system(size: 12))
    } 
}

Is this 12pt?

I am not sure if font that I am seeing is 12pt.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source