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