diff --git a/src/Nri/Ui/RadioButton/V3.elm b/src/Nri/Ui/RadioButton/V3.elm index 45ab4b27..71f69f45 100644 --- a/src/Nri/Ui/RadioButton/V3.elm +++ b/src/Nri/Ui/RadioButton/V3.elm @@ -223,7 +223,6 @@ type alias Config value msg = , isDisabled : Bool , guidance : Guidance , error : ErrorState - , showPennant : Bool , hideLabel : Bool , containerCss : List Css.Style , labelCss : List Css.Style @@ -243,7 +242,6 @@ emptyConfig = , isDisabled = False , guidance = InputErrorAndGuidanceInternal.noGuidance , error = InputErrorAndGuidanceInternal.noError - , showPennant = False , hideLabel = False , containerCss = [] , labelCss = [] @@ -325,7 +323,6 @@ view { label, name, value, valueToString, selectedValue } attributes = in Html.span [ Attributes.id (idValue ++ "-container") - , classList [ ( "Nri-RadioButton-PremiumClass", config.showPennant ) ] , css [ position relative , marginLeft (px -4)