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