Javier Cicchelli d19c1c15d1 [Framework] Feed Item coordinator (#17)
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>
2024-03-21 22:56:38 +00:00

29 lines
865 B
Swift

//
// String+Icons.swift
// ReviewsUIKit
//
// Created by Javier Cicchelli on 20/03/2024.
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
//
public extension String {
enum Icon {
// MARK: Constants
public static let info = "info.circle.fill"
public static let person = "person.crop.circle.fill"
public static let starAll = "a.circle"
public static let star1 = "1.circle"
public static let star2 = "2.circle"
public static let star3 = "3.circle"
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"
static let starFill = "star.fill"
}
}