mirror of
https://github.com/SagerNet/sing-box-for-apple.git
synced 2026-05-04 11:32:29 +00:00
15 lines
275 B
Swift
15 lines
275 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
public struct BackButton: View {
|
|
@Environment(\.dismiss) private var dismiss
|
|
|
|
public var body: some View {
|
|
Button {
|
|
dismiss()
|
|
} label: {
|
|
Image(systemName: "chevron.backward")
|
|
}
|
|
}
|
|
}
|