[Framework] Feed Item coordinator #17

Merged
javier merged 10 commits from framework/feed/coordinators into main 2024-03-21 22:56:39 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 0fb3fcfee0 - Show all commits

View File

@ -19,6 +19,7 @@ public extension String {
public static let star4 = "4.circle"
public static let star5 = "5.circle"
static let close = "xmark.circle.fill"
static let filter = "camera.filters"
static let questionMark = "questionmark.circle.fill"
static let star = "star"

View File

@ -1,5 +1,5 @@
//
// UIImage+ICons.swift
// UIImage+Icons.swift
// ReviewsUIKit
//
// Created by Javier Cicchelli on 20/03/2024.
@ -12,6 +12,7 @@ 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)