25 lines
462 B
Swift
25 lines
462 B
Swift
//
|
|
// Images.swift
|
|
// testapp
|
|
//
|
|
// Created by Vlad Suhomlinov on 24.04.2021.
|
|
// Copyright © 2021 touchin. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIImage {
|
|
|
|
static var lightOn: UIImage {
|
|
#imageLiteral(resourceName: "lightning.pdf")
|
|
}
|
|
|
|
static var lightOff: UIImage {
|
|
#imageLiteral(resourceName: "light-disable")
|
|
}
|
|
|
|
static var corners: UIImage {
|
|
#imageLiteral(resourceName: "corners")
|
|
}
|
|
}
|