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