This PR contains the work done to implement the `FeedItemCoordinator` coordinator in the `Feed` framework. Reviewed-on: #17 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
21 lines
469 B
Swift
21 lines
469 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 close = UIImage(systemName: .Icon.close)
|
|
public static let filter = UIImage(systemName: .Icon.filter)
|
|
public static let star = UIImage(systemName: .Icon.star)
|
|
|
|
}
|
|
}
|