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
import Foundation
/// The view model used to configure a `SecondaryRoundedButton`
public struct SecondaryRoundedButtonViewModel {
public let title: String?
public let a11yIdentifier: String
public init(title: String?, a11yIdentifier: String) {
self.title = title
self.a11yIdentifier = a11yIdentifier
}
}