Files
swiftapp/swift/WatchApp/Design/StatusDot.swift
T

12 lines
179 B
Swift
Raw Normal View History

import SwiftUI
struct StatusDot: View {
let color: Color
var body: some View {
Circle()
.fill(color)
.frame(width: 8, height: 8)
}
}