Path: blob/a-new-beginning/Folium-iOS/Extensions/UIFont.swift
2 views
//
// UIFont.swift
// Folium-iOS
//
// Created by Jarrod Norwell on 2/7/2025.
//
import Foundation
import UIKit
extension UIFont {
static func bold(_ textStyle: UIFont.TextStyle) -> UIFont { .boldSystemFont(ofSize: UIFont.preferredFont(forTextStyle: textStyle).pointSize) }
}