13 lines
173 B
Swift
13 lines
173 B
Swift
//
|
|
// FontStyleable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 8/5/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol FontStyleable {
|
|
var fontStyle: FontStyle { get set }
|
|
}
|