15 lines
251 B
Swift
15 lines
251 B
Swift
//
|
|
// Fontable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 8/3/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Fontable {
|
|
var fontSize: FontSize { get set }
|
|
var fontWeight: FontWeight { get set }
|
|
var fontCategory: FontCategory { get set }
|
|
}
|