vds_ios/VDS/Protocols/Labelable.swift
Matt Bruce b4b1de52a2 refactored Typography
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-16 12:05:28 -05:00

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
}
}