13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { isFeaturePluginBuild } from '@woocommerce/block-settings';
|
||
|
|
||
|
export const gatedStyledText = ( { color, fontSize } ) =>
|
||
|
isFeaturePluginBuild()
|
||
|
? {
|
||
|
color,
|
||
|
fontSize,
|
||
|
}
|
||
|
: {};
|