1 contributor
22 lines | 0.383kb
//
//  MeterInfoRow.swift
//  USB Meter
//

import SwiftUI

struct MeterInfoRow: View {
    let label: String
    let value: String

    var body: some View {
        HStack {
            Text(label)
            Spacer()
            Text(value)
                .foregroundColor(.secondary)
                .multilineTextAlignment(.trailing)
        }
        .font(.footnote)
    }
}