Files
ghostty/macos/Sources/Features/Paste Protection/PasteProtectionView.swift
2023-11-04 20:15:39 -07:00

19 lines
483 B
Swift

import SwiftUI
struct PasteProtectionView: View {
var body: some View {
HStack {
Image("AppIconImage")
.resizable()
.scaledToFit()
.frame(width: 128, height: 128)
VStack(alignment: .leading) {
Text("Oh, no. 😭").font(.title)
Text("Something went fatally wrong.\nCheck the logs and restart Ghostty.")
}
}
.padding()
}
}