// // BoxBtnView.swift // AcaMate // // Created by TAnine on 2/4/25. // import SwiftUI struct BoxBtnView: View { let width: CGFloat let height: CGFloat let action: VOID_TO_VOID? @ViewBuilder let content: Content var body: some View { Button{ guard let action = action else { return } action() } label: { content } } } #Preview { BoxBtnView(width: 40, height: 40, action: nil){ VStack { Text("Test1") Text("Test2") } } }