From b993952e308f1d44807b0b92ae5152163c5ee8de Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 3 Aug 2022 15:26:40 -0500 Subject: [PATCH] updated labelable Signed-off-by: Matt Bruce --- VDS/Protocols/Labelable.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/VDS/Protocols/Labelable.swift b/VDS/Protocols/Labelable.swift index 90dc545c..4ef59b8f 100644 --- a/VDS/Protocols/Labelable.swift +++ b/VDS/Protocols/Labelable.swift @@ -8,8 +8,8 @@ import Foundation public protocol Labelable { - var fontSize: VDSFontSize { get set } - var textPosition: VDSTextPosition { get set } - var fontWeight: VDSFontWeight { get set } - var fontCategory: VDSFontCategory { get set } + var fontSize: FontSize { get set } + var textPosition: TextPosition { get set } + var fontWeight: FontWeight { get set } + var fontCategory: FontCategory { get set } }