Mist/Mist/Model/AppIcon.swift
2024-02-25 20:41:36 +11:00

32 lines
521 B
Swift

//
// AppIcon.swift
// Mist
//
// Created by Nindi Gill on 25/2/2024.
//
import Foundation
enum AppIcon: String, CaseIterable, Identifiable {
case monterey = "Monterey"
case ventura = "Ventura"
case sonoma = "Sonoma"
static let `default`: AppIcon = .sonoma
var id: String {
rawValue
}
var description: String {
rawValue
}
var name: String {
"App Icon - \(rawValue)"
}
var previewName: String {
"App Icon Preview - \(rawValue)"
}
}