vds_ios/VDS/Typography/FontWeight.swift
Matt Bruce 20895847ed added fonts
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-27 18:26:26 -05:00

24 lines
343 B
Swift

//
// FontWeight.swift
// VDS
//
// Created by Matt Bruce on 7/27/22.
//
import Foundation
import UIKit
import VDSTypographyTokens
public struct Typography {
public enum FontWeight: String, Codable {
case regular, bold
}
public enum Letterspacing: String, Codable {
case tight, wide
}
}