Files
workoutsplus/WorkoutsPlus/Components/RestListItem.swift

26 lines
444 B
Swift

//
// RestListItem.swift
// WorkoutsPlus
//
// Created by Felix Förtsch on 02.10.24.
//
import SwiftUI
struct RestListItem: View {
var restTime: TimeInterval = 15
var body: some View {
HStack {
Image(systemName: "pause")
Text("Rest for \(Int(restTime.rounded())) seconds")
.font(.system(size: 14, weight: .regular, design: .default))
.textCase(.uppercase)
}
}
}
#Preview {
RestListItem()
}