/**
* Create the icon for the Toolset Content Template Gutenberg block.
*
* This file basically creates a span element containing all the right class for the Toolset Content Template Gutenberg block
* icon to be displayed.
*
* @since 2.3
*/
const blockIcon = <span><span className={ 'toolset-gutenberg-block-image toolset-cred-form-gutenberg-block dashicon' }></span></span>;
const blockPlaceholder = <span className={ 'toolset-gutenberg-block-placeholder toolset-cred-form-gutenberg-block dashicon' }></span>;
const icon = {
blockIcon: blockIcon,
blockPlaceholder: blockPlaceholder,
};
export default icon;
|