// // CurrentWorkoutElapsedTimeView.swift // Werkout_ios // // Created by Trey Tartt on 7/7/23. // import SwiftUI struct CurrentWorkoutElapsedTimeView: View { let currentWorkoutRunTimeInSeconds: Int var body: some View { if currentWorkoutRunTimeInSeconds > -1 { VStack { Text("\(Double(currentWorkoutRunTimeInSeconds).asString(style: .positional))") .font(.system(size: 20, weight: .black, design: .monospaced)) .foregroundStyle(WerkoutTheme.accent) } } } }