Revision control

Copy as Markdown

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/
/// The view model used to configure a `RoundedButtonWithImage`
public struct RoundedButtonWithImageViewModel {
public let title: String?
public let image: String?
public let isAnimating: Bool
public let a11yIdentifier: String
public init(title: String?, image: String?, isAnimating: Bool, a11yIdentifier: String) {
self.title = title
self.image = image
self.isAnimating = isAnimating
self.a11yIdentifier = a11yIdentifier
}
}