Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created April 9, 2024 22:20
Show Gist options
  • Save apatronl/e40fb38f58421322b9e8f91cb10ddc6e to your computer and use it in GitHub Desktop.
Save apatronl/e40fb38f58421322b9e8f91cb10ddc6e to your computer and use it in GitHub Desktop.
import SwiftUI
struct SendMessageButton: View {
let action: () -> Void
var body: some View {
Button(action: action) {
Image(systemName: "paperplane.circle.fill")
.font(.title)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment