// // Button+Publisher.swift // VDS // // Created by Matt Bruce on 8/18/22. // import Foundation import UIKit import Combine extension UIButton { public var tapPublisher: AnyPublisher { publisher(for: .touchUpInside) .eraseToAnyPublisher() } }