mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
18 lines
314 B
Swift
18 lines
314 B
Swift
import SwiftUI
|
|
|
|
struct AlertButton: View {
|
|
let action: () -> Void
|
|
|
|
var body: some View {
|
|
Button(action: action) {
|
|
Image(systemName: "bell.and.waves.left.and.right")
|
|
.foregroundColor(.primary)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct AlertButtonPreview: PreviewProvider {
|
|
static var previews: some View {
|
|
AlertButton {}
|
|
}
|
|
}
|