Files
Cable/Pods/PostHog/PostHog/Surveys/BottomSection.swift
Stefan Lange-Hegermann ced06f9eb6 ads tracking
2025-11-05 11:13:54 +01:00

24 lines
430 B
Swift

//
// BottomSection.swift
// PostHog
//
// Created by Ioannis Josephides on 18/03/2025.
//
#if os(iOS)
import SwiftUI
@available(iOS 15.0, *)
struct BottomSection: View {
let label: String
let action: () -> Void
var body: some View {
Button(label, action: action)
.buttonStyle(SurveyButtonStyle())
.padding(.bottom, 16)
}
}
#endif