24 lines
343 B
Swift
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
|
|
}
|
|
|
|
}
|
|
|