mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 06:26:41 +03:00
21 lines
659 B
Swift
21 lines
659 B
Swift
// Copyright © 2021 Tokenary. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
struct Images {
|
|
|
|
static var noData: UIImage { systemName("wind") }
|
|
static var failedToLoad: UIImage { systemName("xmark.octagon") }
|
|
static var preferences: UIImage { systemName("gearshape") }
|
|
static var circleFill: UIImage { systemName("circle.fill") }
|
|
|
|
private static func named(_ name: String) -> UIImage {
|
|
return UIImage(named: name)!
|
|
}
|
|
|
|
private static func systemName(_ systemName: String, configuration: UIImage.Configuration? = nil) -> UIImage {
|
|
return UIImage(systemName: systemName, withConfiguration: configuration)!
|
|
}
|
|
|
|
}
|