diff --git a/MVMCoreUI/Atomic/Atoms/Buttons/PillButton.swift b/MVMCoreUI/Atomic/Atoms/Buttons/PillButton.swift index 6b47f112..e578fa51 100644 --- a/MVMCoreUI/Atomic/Atoms/Buttons/PillButton.swift +++ b/MVMCoreUI/Atomic/Atoms/Buttons/PillButton.swift @@ -185,11 +185,11 @@ open class PillButton: Button, MVMCoreUIViewConstrainingProtocol { switch buttonSize { case .tiny: - titleLabel?.font = Styler.Font.BoldMicro.getFont() + titleLabel?.font = Styler.Font.BoldMicro.getFont(false) case .small: - titleLabel?.font = Styler.Font.BoldBodySmall.getFont() + titleLabel?.font = Styler.Font.BoldBodySmall.getFont(false) case .standard: - titleLabel?.font = Styler.Font.BoldBodyLarge.getFont() + titleLabel?.font = Styler.Font.BoldBodyLarge.getFont(false) } layer.cornerRadius = getInnerPadding()