vds_ios/VDS/Fonts/VDSFonts.swift
Matt Bruce ecdd57f094 renamed to fonts
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-02 11:11:16 -05:00

33 lines
616 B
Swift

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