// // Useable.swift // VDS // // Created by Jarrod Courtney on 9/22/22. // import Foundation import UIKit import VDSColorTokens public enum Use: String, Codable, Equatable { case primary, secondary public var color: UIColor { return self == .primary ? VDSColor.backgroundPrimaryDark : .clear } } public protocol Useable { var use: Use { get set } }