Files
swiftapp/swift/Sources/Core/Design/StatusDot.swift
T
jkunz 61a0cc1f7d
CI / test (push) Has been cancelled
Overhaul native approval UX and add widget surfaces
Bring the SwiftUI app in line with the Apple-native mock and keep pending approvals actionable from Live Activities and watch complications.
2026-04-19 16:29:13 +02:00

17 lines
350 B
Swift

import SwiftUI
struct StatusDot: View {
let color: Color
var body: some View {
Circle()
.fill(color)
.frame(width: 10, height: 10)
.overlay(
Circle()
.stroke(Color.white.opacity(0.65), lineWidth: 1)
)
.accessibilityHidden(true)
}
}