import { memo } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; const Blog = (props) => { const { className, ...otherProps } = props; return ( {__('Blog Icon', 'extendify-local')} ); }; export default memo(Blog);