FontConstants.swift 852 Bytes
//
//  FontConstants.swift
//  browser
//
//  Created by Artem Talko on 19.10.2023.
//

import UIKit

struct FontConstants {
    
    //SFProText-Regular
    static let regularFont_18 = UIFont(name: "SFProText-Regular", size: 18.sizeW)
    static let regularFont_14 = UIFont(name: "SFProText-Regular", size: 14.sizeW)
    static let regularFont_12 = UIFont(name: "SFProText-Regular", size: 12.sizeW)
    
    //SFProText-Semibold
    static let semiboldFont_18 = UIFont(name: "SFProText-Semibold", size: 18.sizeW)
    static let semiboldFont_17 = UIFont(name: "SFProText-Semibold", size: 17.sizeW)
    static let semiboldFont_15 = UIFont(name: "SFProText-Semibold", size: 15.sizeW)
    static let semiboldFont_14 = UIFont(name: "SFProText-Semibold", size: 14.sizeW)
    static let semiboldFont_12 = UIFont(name: "SFProText-Semibold", size: 12.sizeW)
}