if #available(iOS 16.0, *) {
PasteButton(payloadType: String.self) {_ in }
.labelStyle(.iconOnly)
.tint(.gray)
.buttonBorderShape(.capsule)
}
また、このアイコンのみPasteButtonに似た独自ボタンの作り方↓
Button(action: {}){
Image(systemName: "speaker.wave.3.fill")
.resizable()
.scaledToFit()
.frame(width: 25,height: 25)
.tint(.white)
.frame(width: 52,height: 35)
.background(.gray)
.cornerRadius(20)
}
