updated for typography

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-08-16 12:06:09 -05:00
parent 45aa38b333
commit 239d6f66e3

View File

@ -56,13 +56,13 @@ class TextPositionPicker: PickerBase<TextPosition> {
}
}
class TextSizePicker: PickerBase<FontSize> {
class TextSizePicker: PickerBase<TypographicalStyle.FontSize> {
init(){
super.init(items: [.small, .large])
}
}
class FontWeightPicker: PickerBase<FontWeight> {
class FontWeightPicker: PickerBase<TypographicalStyle.FontWeight> {
init(){
super.init(items: [.regular, .bold])
}