15 lines
354 B
Swift
15 lines
354 B
Swift
import SharedModels
|
|
import SwiftUI
|
|
|
|
public struct CoolingCapacityPicker: View {
|
|
@Binding var selection: EquipmentMetadata.CoolingCapacity
|
|
|
|
public init(selection: Binding<EquipmentMetadata.CoolingCapacity>) {
|
|
self._selection = selection
|
|
}
|
|
|
|
public var body: some View {
|
|
CaseIterablePicker("Cooling Capacity", selection: $selection)
|
|
}
|
|
}
|