+ { symbol } + { integer } + { showPriceFraction && ( + + { fraction } + + ) } +
+ ); + }; + + const renderItem = ( feature: Feature, plan: 'paid' | 'free' ) => { + const { isIncluded, label, strong } = feature[ plan ]; + const defaultLabel = isLg + ? String( isIncluded ? translate( 'Included' ) : translate( 'Not included' ) ) + : String( + isIncluded + ? feature.name + : translate( '%s not included', { args: [ feature.name ], comment: 'Feature name' } ) + ); + const text = label ?? defaultLabel; + return ( +