vds_ios/VDS/Fonts/Font.swift
Matt Bruce 4ba642242e refactored name
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-06-20 14:25:39 -05:00

36 lines
692 B
Swift

//
// Fonts.swift
// VDS
//
// Created by Matt Bruce on 7/27/22.
//
import Foundation
public enum Font: String, FontProtocol {
case dsBold
case dsRegular
case dsLight
case txBold
case txRegular
public var fontName: String {
switch self {
case .dsBold:
return "VerizonNHGeDS-Bold"
case .dsRegular:
return "VerizonNHGeDS-Regular"
case .dsLight:
return "VerizonNHGDS-Light"
case .txBold:
return "VerizonNHGeTX-Bold"
case .txRegular:
return "VerizonNHGeTX-Regular"
}
}
public var fontFileExtension: String {
return "otf"
}
}