21 lines
348 B
Swift
21 lines
348 B
Swift
//
|
|
// LabelModelable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/28/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
public protocol Labelable {
|
|
var typograpicalStyle: TypographicalStyle { get set }
|
|
var textPosition: TextPosition { get set }
|
|
}
|
|
|
|
extension Labelable {
|
|
public var font: UIFont? {
|
|
return typograpicalStyle.font
|
|
}
|
|
}
|