david-swift 3d2ef52cc8
Some checks failed
Deploy Docs / publish (push) Successful in 3m4s
SwiftLint / SwiftLint (push) Failing after 9s
Extract core target
2024-12-04 21:17:21 +01:00

25 lines
350 B
Swift

//
// Icon.swift
// MacBackend
//
// Created by david-swift on 30.11.2024.
//
import SwiftUI
/// The icon type.
public enum Icon {
/// A system icon.
case system(name: String)
/// The SwiftUI image.
var image: Image {
switch self {
case let .system(name):
.init(systemName: name)
}
}
}