23 lines
394 B
Swift
23 lines
394 B
Swift
//
|
|
// Font.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/09.
|
|
//
|
|
|
|
enum Font: String {
|
|
case bold = "GmarketSansBold"
|
|
|
|
case medium = "GmarketSansMedium"
|
|
|
|
case light = "GmarketSansLight"
|
|
|
|
case preBold = "Pretendard-Bold"
|
|
|
|
case preMedium = "Pretendard-Medium"
|
|
|
|
case preRegular = "Pretendard-Regular"
|
|
|
|
case preLight = "Pretendard-Light"
|
|
}
|