mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-16 04:16:39 -05:00
14 lines
208 B
Swift
14 lines
208 B
Swift
import Foundation
|
|
import SwiftUI
|
|
#if canImport(UIKit)
|
|
import UIKit
|
|
#else
|
|
import AppKit
|
|
#endif
|
|
|
|
public extension Image {
|
|
init(imageAsset: ImageAsset) {
|
|
self.init(uiImage: imageAsset.image)
|
|
}
|
|
}
|