struct ContentView: View {
   var body: some View {
      Image(systemName: "thermometer.high", variableValue: 0.6)
         .font(Font.system(size: 100))
         .symbolRenderingMode(.multicolor)
         .symbolVariableValueMode(.draw)
   }
}