File "getGBSEditorStyles.js"

Full Path: /home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/getGBSEditorStyles.js
File size: 428 bytes
MIME-type: text/plain
Charset: utf-8

const getGBSEditorStyles = ( globalBlockStyles, globalBlockStyleId ) => {
    if ( ! globalBlockStyles || ! globalBlockStyleId ) {
        return '';
    }
    let editorStyles = '';
    for ( const style of globalBlockStyles ) {
        if ( style?.value === globalBlockStyleId ) {
            editorStyles = style?.editorStyles
            break;
        }
    }
    return editorStyles;
};

export default getGBSEditorStyles;