20 lines
402 B
Swift
20 lines
402 B
Swift
|
//
|
||
|
// UIImage+Icons.swift
|
||
|
// ReviewsUIKit
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 20/03/2024.
|
||
|
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
public extension UIImage {
|
||
|
enum Icon {
|
||
|
|
||
|
// MARK: Constants
|
||
|
public static let info = UIImage(systemName: .Icon.info)
|
||
|
public static let person = UIImage(systemName: .Icon.person)
|
||
|
|
||
|
}
|
||
|
}
|