// // BackButton.swift // MattermostShare // // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. // import SwiftUI struct BackButton: View { @Environment(\.presentationMode) var presentationMode: Binding var body: some View { FontIcon.button( .compassIcons(code: .back), action: { self.presentationMode.wrappedValue.dismiss() }, fontsize: 24, color: Color.theme.sidebarText ) .padding(.trailing, 10) .padding(.vertical, 5) } }