Files
ContainerController/Example/ContainerControllerSwift/Framework/Utils/Font.swift
T
2024-09-04 04:26:04 +03:00

16 lines
359 B
Swift

//
// Font.swift
// ContainerControllerSwift_Example
//
// Created by Рустам Мотыгуллин on 08.08.2024.
// Copyright © 2024 CocoaPods. All rights reserved.
//
import UIKit
extension UIFont {
class func mediumSystemFont(ofSize pointSize: CGFloat) -> UIFont {
return self.systemFont(ofSize: pointSize, weight: .medium)
}
}