import SwiftUI struct AppBackButtonIcon: View { var body: some View { Image(systemName: "chevron.left") .font(.system(size: 14, weight: .semibold)) .foregroundStyle(AppColors.textPrimary) .frame(width: 32, height: 32) .background(AppColors.surface) .clipShape(Circle()) .shadow(color: .black.opacity(0.06), radius: 8, y: 2) } }