Files
Kecalek_python/ios_client/EncryptedChat/Views/Components/OnlineDotOverlay.swift
2026-03-11 16:54:14 +01:00

16 lines
310 B
Swift

import SwiftUI
struct OnlineDotOverlay: View {
var size: CGFloat = 12
var body: some View {
Circle()
.fill(.green)
.frame(width: size, height: size)
.overlay(
Circle()
.stroke(.white, lineWidth: 2)
)
}
}